diff options
author | Susant Sahani <ssahani@gmail.com> | 2018-11-26 12:50:09 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-11-27 03:04:42 +0100 |
commit | 2266864b04257d7a92d1f2064797ec239068895b (patch) | |
tree | 6aa37cde244d083bb2ce2c3b7060dd423b3a03c8 /man | |
parent | First restructuration of Logitech mice in 70-mouse.hwdb (diff) | |
download | systemd-2266864b04257d7a92d1f2064797ec239068895b.tar.xz systemd-2266864b04257d7a92d1f2064797ec239068895b.zip |
networkd: Add support for ERSPAN tunnel
Please see: https://patchwork.ozlabs.org/patch/800327/
```
[NetDev]
Name=erspan-test
Kind=erspan
[Tunnel]
Independent=true
ERSPANIndex=123
Local = 172.16.1.200
Remote = 172.16.1.100
Key=101
SerializeTunneledPackets=true
```
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.netdev.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/man/systemd.netdev.xml b/man/systemd.netdev.xml index 3a60b99ee3..42e771f22f 100644 --- a/man/systemd.netdev.xml +++ b/man/systemd.netdev.xml @@ -100,6 +100,11 @@ <row><entry><varname>gretap</varname></entry> <entry>A Level 2 GRE tunnel over IPv4.</entry></row> + <row><entry><varname>erspan</varname></entry> + <entry>ERSPAN mirrors traffic on one or more source ports and delivers the mirrored traffic to one or more destination ports on another switch. + The traffic is encapsulated in generic routing encapsulation (GRE) and is therefore routable across a layer 3 network between the source switch + and the destination switch.</entry></row> + <row><entry><varname>ip6gre</varname></entry> <entry>A Level 3 GRE tunnel over IPv6.</entry></row> @@ -919,6 +924,22 @@ applicable to SIT tunnels.</para> </listitem> </varlistentry> + <varlistentry> + <term><varname>SerializeTunneledPackets=</varname></term> + <listitem> + <para>Takes a boolean value. If set to yes, then packets are serialized. Only applies for ERSPAN tunnel. + Defaults to unset. + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><varname>ERSPANIndex=</varname></term> + <listitem> + <para>Specifies the ERSPAN index field for the interface, an integer in the range 1-1048575 associated with + the ERSPAN traffic's source port and direction. This field is mandatory. + </para> + </listitem> + </varlistentry> </variablelist> </refsect1> |