From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 5C12CA0679 for ; Thu, 4 Apr 2019 12:11:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0CAFF1B117; Thu, 4 Apr 2019 12:11:34 +0200 (CEST) Received: from tama50.ecl.ntt.co.jp (tama50.ecl.ntt.co.jp [129.60.39.147]) by dpdk.org (Postfix) with ESMTP id 7D7B61B117 for ; Thu, 4 Apr 2019 12:11:32 +0200 (CEST) Received: from vc2.ecl.ntt.co.jp (vc2.ecl.ntt.co.jp [129.60.86.154]) by tama50.ecl.ntt.co.jp (8.13.8/8.13.8) with ESMTP id x34ABU3Y026718; Thu, 4 Apr 2019 19:11:30 +0900 Received: from vc2.ecl.ntt.co.jp (localhost [127.0.0.1]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id CC2E5639340; Thu, 4 Apr 2019 19:11:30 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by vc2.ecl.ntt.co.jp (Postfix) with ESMTP id B05CA6392D6; Thu, 4 Apr 2019 19:11:30 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: spp@dpdk.org, ferruh.yigit@intel.com, ogawa.yasufumi@lab.ntt.co.jp Date: Thu, 4 Apr 2019 19:09:16 +0900 Message-Id: <1554372556-18415-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 X-TM-AS-MML: disable Subject: [spp] [PATCH] docs: fix wrong setting up for spp_vf X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: spp-bounces@dpdk.org Sender: "spp" From: Yasufumi Ogawa Fix wrong descriptions of spp_vf setup in usecases section. Signed-off-by: Yasufumi Ogawa --- docs/guides/usecases/spp_vf.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/usecases/spp_vf.rst b/docs/guides/usecases/spp_vf.rst index d2092e2..b7c304b 100644 --- a/docs/guides/usecases/spp_vf.rst +++ b/docs/guides/usecases/spp_vf.rst @@ -132,7 +132,7 @@ Ensure NICs, ``ens0`` and ``ens1`` in this case, are upped on remote host # terminal 1 on remote host # Configure ip address of ens0 - $ sudo ifconfig ens0 192.168.140.1 255.255.255.0 up + $ sudo ifconfig ens0 192.168.140.1 netmask 255.255.255.0 up Add arp entries of MAC addresses statically to be resolved. @@ -233,7 +233,7 @@ Finally, terminate ``spp_vf`` by using ``exit`` or ``bye sec``. .. code-block:: console - spp > vf 0; exit + spp > vf 1; exit .. _spp_usecases_vf_ssh: @@ -443,11 +443,11 @@ After VMs are launched, login to ``spp-vm1`` first to configure. .. note:: To avoid asked for unknown keys while login VMs, use - ``-oStrictHostKeyChecking=no`` option for ssh. + ``-o StrictHostKeyChecking=no`` option for ssh. .. code-block:: console - $ ssh -oStrictHostKeyChecking=no sppuser at 192.168.122.31 + $ ssh -o StrictHostKeyChecking=no sppuser at 192.168.122.31 Up interfaces and disable TCP offload to avoid ssh login is failed. -- 2.7.4