Soft Patch Panel
 help / color / mirror / Atom feed
* [spp] [PATCH 1/5] docs: add spp_vf exit command to reference
       [not found] <20181228032927.12034-1-x-fn-spp@sl.ntt-tx.co.jp>
@ 2018-12-28  3:29 ` x-fn-spp
  2018-12-28  3:29 ` [spp] [PATCH 2/5] docs: add spp_mirror exit " x-fn-spp
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: x-fn-spp @ 2018-12-28  3:29 UTC (permalink / raw)
  To: ferruh.yigit, ogawa.yasufumi; +Cc: spp

From: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>

This patch adds exit command for spp_vf to command reference.

Signed-off-by: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>
Signed-off-by: Naoki Takada <takada.naoki@lab.ntt.co.jp>
---
 docs/guides/commands/secondary/spp_vf.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/guides/commands/secondary/spp_vf.rst b/docs/guides/commands/secondary/spp_vf.rst
index 2ffe237..cbb4859 100644
--- a/docs/guides/commands/secondary/spp_vf.rst
+++ b/docs/guides/commands/secondary/spp_vf.rst
@@ -346,3 +346,12 @@ Delete an entryThis is an example to delete an entry for port ``ring:0``.
 
     # delete entry with VLAN tag
     spp > vf 1; classifier_table del vlan 101 52:54:00:01:00:01 ring:0
+
+exit
+----
+
+Terminate the spp_vf.
+
+.. code-block:: console
+
+    spp > vf 1; exit
-- 
2.17.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [spp] [PATCH 2/5] docs: add spp_mirror exit to reference
       [not found] <20181228032927.12034-1-x-fn-spp@sl.ntt-tx.co.jp>
  2018-12-28  3:29 ` [spp] [PATCH 1/5] docs: add spp_vf exit command to reference x-fn-spp
@ 2018-12-28  3:29 ` x-fn-spp
  2018-12-28  3:29 ` [spp] [PATCH 3/5] docs: add exit description to usecase of spp_vf x-fn-spp
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: x-fn-spp @ 2018-12-28  3:29 UTC (permalink / raw)
  To: ferruh.yigit, ogawa.yasufumi; +Cc: spp

From: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>

This patch adds exit command for spp_mirror to command reference.

Signed-off-by: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>
Signed-off-by: Naoki Takada <takada.naoki@lab.ntt.co.jp>
---
 docs/guides/commands/secondary/spp_mirror.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/guides/commands/secondary/spp_mirror.rst b/docs/guides/commands/secondary/spp_mirror.rst
index 7aab9d1..de20c1a 100644
--- a/docs/guides/commands/secondary/spp_mirror.rst
+++ b/docs/guides/commands/secondary/spp_mirror.rst
@@ -218,3 +218,12 @@ Here is an example.
 
     # delete tx port 'vhost:1' from 'mr1'
     spp > mirror 2; port del vhost:1 tx mr1
+
+exit
+----
+
+Terminate the spp_mirror.
+
+.. code-block:: console
+
+    spp > mirror 2; exit
-- 
2.17.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [spp] [PATCH 3/5] docs: add exit description to usecase of spp_vf
       [not found] <20181228032927.12034-1-x-fn-spp@sl.ntt-tx.co.jp>
  2018-12-28  3:29 ` [spp] [PATCH 1/5] docs: add spp_vf exit command to reference x-fn-spp
  2018-12-28  3:29 ` [spp] [PATCH 2/5] docs: add spp_mirror exit " x-fn-spp
@ 2018-12-28  3:29 ` x-fn-spp
  2018-12-28  3:29 ` [spp] [PATCH 4/5] docs: add exit description to spp_mirror usecase x-fn-spp
  2018-12-28  3:29 ` [spp] [PATCH 5/5] docs: update command example in usecase2 x-fn-spp
  4 siblings, 0 replies; 5+ messages in thread
From: x-fn-spp @ 2018-12-28  3:29 UTC (permalink / raw)
  To: ferruh.yigit, ogawa.yasufumi; +Cc: spp

From: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>

This patch adds exit description to usecase of spp_vf

Signed-off-by: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>
Signed-off-by: Naoki Takada <takada.naoki@lab.ntt.co.jp>
---
 docs/guides/spp_vf/use_cases/usecase1.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/guides/spp_vf/use_cases/usecase1.rst b/docs/guides/spp_vf/use_cases/usecase1.rst
index 0c1976d..719d673 100644
--- a/docs/guides/spp_vf/use_cases/usecase1.rst
+++ b/docs/guides/spp_vf/use_cases/usecase1.rst
@@ -400,3 +400,12 @@ Then, stop components.
     spp > vf 1; component stop forwarder7
     spp > vf 1; component stop forwarder8
     spp > vf 1; component stop merger2
+
+Exit spp_vf
+-----------
+
+Terminate spp_vf.
+
+.. code-block:: console
+
+    spp > vf 1; exit
-- 
2.17.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [spp] [PATCH 4/5] docs: add exit description to spp_mirror usecase
       [not found] <20181228032927.12034-1-x-fn-spp@sl.ntt-tx.co.jp>
                   ` (2 preceding siblings ...)
  2018-12-28  3:29 ` [spp] [PATCH 3/5] docs: add exit description to usecase of spp_vf x-fn-spp
@ 2018-12-28  3:29 ` x-fn-spp
  2018-12-28  3:29 ` [spp] [PATCH 5/5] docs: update command example in usecase2 x-fn-spp
  4 siblings, 0 replies; 5+ messages in thread
From: x-fn-spp @ 2018-12-28  3:29 UTC (permalink / raw)
  To: ferruh.yigit, ogawa.yasufumi; +Cc: spp

From: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>

This patch adds exit description to usecase of spp_mirror.

Signed-off-by: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>
Signed-off-by: Naoki Takada <takada.naoki@lab.ntt.co.jp>
---
 docs/guides/spp_vf/use_cases/usecase2.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/guides/spp_vf/use_cases/usecase2.rst b/docs/guides/spp_vf/use_cases/usecase2.rst
index c7f62e4..2447cfa 100644
--- a/docs/guides/spp_vf/use_cases/usecase2.rst
+++ b/docs/guides/spp_vf/use_cases/usecase2.rst
@@ -268,3 +268,12 @@ Add port from classifier_mac1 to VM1.
 
     # Add port from classifier_mac1 to VM1.
     spp > vf 1; port add ring:0 rx forwarder1
+
+Exit spp_mirror
+~~~~~~~~~~~~~~~
+
+Terminate spp_mirror.
+
+.. code-block:: console
+
+    spp > mirror 1; exit
-- 
2.17.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [spp] [PATCH 5/5] docs: update command example in usecase2
       [not found] <20181228032927.12034-1-x-fn-spp@sl.ntt-tx.co.jp>
                   ` (3 preceding siblings ...)
  2018-12-28  3:29 ` [spp] [PATCH 4/5] docs: add exit description to spp_mirror usecase x-fn-spp
@ 2018-12-28  3:29 ` x-fn-spp
  4 siblings, 0 replies; 5+ messages in thread
From: x-fn-spp @ 2018-12-28  3:29 UTC (permalink / raw)
  To: ferruh.yigit, ogawa.yasufumi; +Cc: spp

From: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>

Update command example because `sec` command is changed to `mirror` for
spp_mirror.

Signed-off-by: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>
Signed-off-by: Naoki Takada <takada.naoki@lab.ntt.co.jp>
---
 docs/guides/spp_vf/use_cases/usecase2.rst | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/docs/guides/spp_vf/use_cases/usecase2.rst b/docs/guides/spp_vf/use_cases/usecase2.rst
index 2447cfa..39b8ca6 100644
--- a/docs/guides/spp_vf/use_cases/usecase2.rst
+++ b/docs/guides/spp_vf/use_cases/usecase2.rst
@@ -85,6 +85,12 @@ and launch ``spp_vf`` with core list ``-l 0,2-14`` in this usecase.
        -s 127.0.0.1:6666 \
        --vhost-client
 
+Start CLI.
+
+.. code-block:: console
+
+   $ python src/spp.py
+
 Start components in ``spp_vf``.
 
 .. code-block:: console
@@ -174,7 +180,7 @@ Start mirror component with core ID 15.
 .. code-block:: console
 
     # Start component of spp_mirror on coreID 15
-    spp > sec 2; component start mirror1 15 mirror
+    spp > mirror 2; component start mirror1 15 mirror
 
 Add ``ring:0`` as rx ports and add ``ring:8`` and ``ring:9`` as tx port
 to mirror.
-- 
2.17.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-12-28  3:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20181228032927.12034-1-x-fn-spp@sl.ntt-tx.co.jp>
2018-12-28  3:29 ` [spp] [PATCH 1/5] docs: add spp_vf exit command to reference x-fn-spp
2018-12-28  3:29 ` [spp] [PATCH 2/5] docs: add spp_mirror exit " x-fn-spp
2018-12-28  3:29 ` [spp] [PATCH 3/5] docs: add exit description to usecase of spp_vf x-fn-spp
2018-12-28  3:29 ` [spp] [PATCH 4/5] docs: add exit description to spp_mirror usecase x-fn-spp
2018-12-28  3:29 ` [spp] [PATCH 5/5] docs: update command example in usecase2 x-fn-spp

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).