Skip to content

Commit

Permalink
erspan: update NEWS and FAQ.
Browse files Browse the repository at this point in the history
Update Documentation/faq/configuration.rst about ERSPAN
and Update NEWS.

Cc: Greg Rose <[email protected]>
Signed-off-by: William Tu <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
williamtu authored and blp committed May 25, 2018
1 parent fa37aff commit 4ee9f05
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
20 changes: 18 additions & 2 deletions Documentation/faq/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,24 @@ Q: How do I configure mirroring of all traffic to a GRE tunnel?

Q: Does Open vSwitch support ERSPAN?

A: No. As an alternative, Open vSwitch supports mirroring to a GRE tunnel
(see above).
A: Yes. ERSPAN version I and version II over IPv4 GRE and
IPv6 GRE tunnel are supported. See ovs-fields(7) for matching
and setting ERSPAN fields.

::

$ ovs-vsctl add-br br0
$ #For ERSPAN type 2 (version I)
$ ovs-vsctl add-port br0 at_erspan0 -- \
set int at_erspan0 type=erspan options:key=1 \
options:remote_ip=172.31.1.1 \
options:erspan_ver=1 options:erspan_idx=1
$ #For ERSPAN type 3 (version II)
$ ovs-vsctl add-port br0 at_erspan0 -- \
set int at_erspan0 type=erspan options:key=1 \
options:remote_ip=172.31.1.1 \
options:erspan_ver=2 options:erspan_dir=1 \
options:erspan_hwid=4

Q: How do I connect two bridges?

Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ Post-v2.9.0
ovs-appctl dpif-netdev/pmd-perf-show
* Supervision of PMD performance metrics and logging of suspicious
iterations
- ERSPAN:
* Implemented ERSPAN protocol (draft-foschiano-erspan-00.txt) for
both kernel datapath and userspace datapath.
* Added port-based and flow-based ERSPAN tunnel port support, added
OpenFlow rules matching ERSPAN fields. See ovs-fields(7).

v2.9.0 - 19 Feb 2018
--------------------
Expand Down

0 comments on commit 4ee9f05

Please sign in to comment.