mirror of
https://github.com/vyos/vyos-documentation.git
synced 2025-10-26 08:41:46 +01:00
vxlan: T3700: support VLAN tunnel mapping of VLAN aware bridges
This commit is contained in:
parent
d4feb68416
commit
d80690d563
@ -132,6 +132,36 @@ For optimal scalability, Multicast shouldn't be used at all, but instead use BGP
|
|||||||
to signal all connected devices between leaves. Unfortunately, VyOS does not yet
|
to signal all connected devices between leaves. Unfortunately, VyOS does not yet
|
||||||
support this.
|
support this.
|
||||||
|
|
||||||
|
Single VXLAN device (SVD)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
FRR supports a new way of configuring VLAN-to-VNI mappings for EVPN-VXLAN, when
|
||||||
|
working with the Linux kernel. In this new way, the mapping of a VLAN to a
|
||||||
|
:abbr:`VNI (VXLAN Network Identifier (or VXLAN Segment ID))` is configured
|
||||||
|
against a container VXLAN interface which is referred to as a
|
||||||
|
:abbr:`SVD (Single VXLAN device)`.
|
||||||
|
|
||||||
|
Multiple VLAN to VNI mappings can be configured against the same SVD. This
|
||||||
|
allows for a significant scaling of the number of VNIs since a separate VXLAN
|
||||||
|
interface is no longer required for each VNI.
|
||||||
|
|
||||||
|
.. cfgcmd:: set interfaces vxlan <interface> vlan-to-vni <vlan> vni <vni>
|
||||||
|
|
||||||
|
Maps the VNI to the specified VLAN id. The VLAN can then be consumed by
|
||||||
|
a bridge.
|
||||||
|
|
||||||
|
Sample configuration of SVD with VLAN to VNI mappings is shown below.
|
||||||
|
|
||||||
|
.. code-block:: none
|
||||||
|
|
||||||
|
set interfaces bridge br0 member interface vxlan0
|
||||||
|
set interfaces vxlan vxlan0 external
|
||||||
|
set interfaces vxlan vxlan0 source-interface 'dum0'
|
||||||
|
set interfaces vxlan vxlan0 vlan-to-vni 10 vni '10010'
|
||||||
|
set interfaces vxlan vxlan0 vlan-to-vni 11 vni '10011'
|
||||||
|
set interfaces vxlan vxlan0 vlan-to-vni 30 vni '10030'
|
||||||
|
set interfaces vxlan vxlan0 vlan-to-vni 31 vni '10031'
|
||||||
|
|
||||||
Example
|
Example
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user