diff options
author | jack9603301 <jack9603301@163.com> | 2020-12-20 22:24:48 +0800 |
---|---|---|
committer | jack9603301 <jack9603301@163.com> | 2020-12-20 22:24:48 +0800 |
commit | 84ea67db630846210df983f4ab4cb966a550790a (patch) | |
tree | a4dc269b2c04529ed23a449f837ecb6d1b3b3b7a /docs/configuration/interfaces/bridge.rst | |
parent | d5c446635e17058bb736be6a6b08a70890bd8c5e (diff) | |
download | vyos-documentation-84ea67db630846210df983f4ab4cb966a550790a.tar.gz vyos-documentation-84ea67db630846210df983f4ab4cb966a550790a.zip |
Examples of adding VLAN awareness and port mirroring
Diffstat (limited to 'docs/configuration/interfaces/bridge.rst')
-rw-r--r-- | docs/configuration/interfaces/bridge.rst | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/docs/configuration/interfaces/bridge.rst b/docs/configuration/interfaces/bridge.rst index a471b8f8..17e3d50b 100644 --- a/docs/configuration/interfaces/bridge.rst +++ b/docs/configuration/interfaces/bridge.rst @@ -127,6 +127,12 @@ VLAN VLAN tag enters the port, the data packet will be forced to add a tag of a specific vlan id. When the vlan id flag flows out, the tag of the vlan id will be stripped + + Example: Set `eth0` member port to be native VLAN 2 + + .. code-block:: none + + set interfaces bridge br1 member interface eth0 native-vlan 2 .. cfgcmd:: set interfaces bridge <interface> member interface <member> allowed-vlan <vlan-id> @@ -134,11 +140,25 @@ VLAN Allows specific VLAN IDs to pass through the bridge member interface. This can either be an individual VLAN id or a range of VLAN ids delimited by a hyphen. + + Example: Set `eth0` member port to be allowed VLAN 4 + + .. code-block:: none + + set interfaces bridge br1 member interface eth0 allowed-vlan 4 + + Example: Set `eth0` member port to be allowed VLAN 6-8 + + .. code-block:: none + + set interfaces bridge br1 member interface eth0 allowed-vlan 6-8 Port Mirror (SPAN) ================== .. cmdinclude:: ../../_include/interface-mirror.txt - :var0: ethernet + :var0: bridge + :var1: br1 + :var2: eth3 ******* Example |