Soft Patch Panel
 help / color / mirror / Atom feed
From: ogawa.yasufumi@lab.ntt.co.jp
To: spp@dpdk.org, ferruh.yigit@intel.com, x-fn-spp@sl.ntt-tx.co.jp
Cc: Hiroyuki Nakamura <nakamura.hioryuki@po.ntt-tx.co.jp>,
	Daiki Yamashita <yamashita.daiki.z01@as.ntt-tx.co.jp>,
	Naoki Takada <takada.naoki@lab.ntt.co.jp>
Subject: [spp] [PATCH 22/28] doc: fix required network configuration
Date: Tue, 23 Jan 2018 09:30:15 +0900	[thread overview]
Message-ID: <20180123003021.28557-3-ogawa.yasufumi@lab.ntt.co.jp> (raw)
In-Reply-To: <20180123003021.28557-1-ogawa.yasufumi@lab.ntt.co.jp>

From: Hiroyuki Nakamura <nakamura.hioryuki@po.ntt-tx.co.jp>

Remove unnecessary steps, registation to arp table,
in "additional network configurations" section in how_to_use.md.

Signed-off-by: Daiki Yamashita <yamashita.daiki.z01@as.ntt-tx.co.jp>
Signed-off-by: Naoki Takada <takada.naoki@lab.ntt.co.jp>
---
 docs/spp_vf/how_to_use.md   |  6 ------
 docs/spp_vf/sample_usage.md | 10 +---------
 2 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/docs/spp_vf/how_to_use.md b/docs/spp_vf/how_to_use.md
index e56d5e3..dee4465 100644
--- a/docs/spp_vf/how_to_use.md
+++ b/docs/spp_vf/how_to_use.md
@@ -100,9 +100,6 @@ it is required additional network configurations on host and guest VMss.
 # Interface for vhost
 $ sudo ifconfig [IF_NAME] inet [IP_ADDR] netmask [NETMASK] up
 
-# Register host2 to arp table
-$ sudo arp -s [IP_ADDR] [MAC_ADDR] -i [IF_NAME]
-
 # Disable offload for vhost interface
 $ sudo ethtool -K [IF_NAME] tx off
 ```
@@ -110,9 +107,6 @@ $ sudo ethtool -K [IF_NAME] tx off
 #### Host2
 
 ```sh
-# Register VM to arp table
-$ sudo arp -s [IP_ADDR] [MAC_ADDR] -i [IF_NAME]
-
 # Disable offload for VM interface
 $ ethtool -K [IF_NAME] tx off
 ```
diff --git a/docs/spp_vf/sample_usage.md b/docs/spp_vf/sample_usage.md
index 5220184..dcc051a 100644
--- a/docs/spp_vf/sample_usage.md
+++ b/docs/spp_vf/sample_usage.md
@@ -71,7 +71,7 @@ set `-oStrictHostKeyChecking=no` option for ssh.
   $ ssh -oStrictHostKeyChecking=no sppuser@192.168.122.31
   ```
 
-Up interfaces for vhost and register them to arp table inside spp-vm1.
+Up interfaces for vhost inside spp-vm1.
 In addition, you have to disable TCP offload function, or ssh is faled
 after configuration is done.
 
@@ -80,10 +80,6 @@ after configuration is done.
   $ sudo ifconfig ens4 inet 192.168.140.21 netmask 255.255.255.0 up
   $ sudo ifconfig ens5 inet 192.168.150.22 netmask 255.255.255.0 up
 
-  # register to arp table
-  $ sudo arp -s 192.168.140.11 a0:36:9f:78:86:78 -i ens4
-  $ sudo arp -s 192.168.150.13 a0:36:9f:6c:ed:bc -i ens5
-
   # diable TCP offload
   $ sudo ethtool -K ens4 tx off
   $ sudo ethtool -K ens5 tx off
@@ -98,10 +94,6 @@ Configurations for spp-vm2 is same as spp-vm1.
   $ sudo ifconfig ens4 inet 192.168.140.31 netmask 255.255.255.0 up
   $ sudo ifconfig ens5 inet 192.168.150.32 netmask 255.255.255.0 up
 
-  # register to arp table
-  $ sudo arp -s 192.168.140.11 a0:36:9f:78:86:78 -i ens4
-  $ sudo arp -s 192.168.150.13 a0:36:9f:6c:ed:bc -i ens5
-
   # diable TCP offload
   $ sudo ethtool -K ens4 tx off
   $ sudo ethtool -K ens5 tx off
-- 
2.13.1

  parent reply	other threads:[~2018-01-23  0:30 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-23  0:30 [spp] [PATCH 20/28] doc: fix vm setup procedure for network config ogawa.yasufumi
2018-01-23  0:30 ` [spp] [PATCH 21/28] doc: update jansson installation procedure ogawa.yasufumi
2018-01-23  0:30 ` ogawa.yasufumi [this message]
2018-01-23  0:30 ` [spp] [PATCH 23/28] doc: add how to use vhost-user support ogawa.yasufumi
2018-01-23  0:30 ` [spp] [PATCH 24/28] doc: add references to hugepages and isolcpus ogawa.yasufumi
2018-01-23  0:30 ` [spp] [PATCH 25/28] doc: remove description on classifier_table ogawa.yasufumi
2018-01-23  0:30 ` [spp] [PATCH 26/28] doc: fix typos and erros in texts ogawa.yasufumi
2018-01-23  0:30 ` [spp] [PATCH 27/28] doc: update sample config section ogawa.yasufumi
2018-01-23  0:30 ` [spp] [PATCH 28/28] doc: align figure title position ogawa.yasufumi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180123003021.28557-3-ogawa.yasufumi@lab.ntt.co.jp \
    --to=ogawa.yasufumi@lab.ntt.co.jp \
    --cc=ferruh.yigit@intel.com \
    --cc=nakamura.hioryuki@po.ntt-tx.co.jp \
    --cc=spp@dpdk.org \
    --cc=takada.naoki@lab.ntt.co.jp \
    --cc=x-fn-spp@sl.ntt-tx.co.jp \
    --cc=yamashita.daiki.z01@as.ntt-tx.co.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).