Introduction
Virtual eXtensible Local Area Network (VXLAN) is a tunneling protocol designed to solve the problem of limited VLAN IDs (4096) in IEEE 802.1Q, and it is described by IETF RFC 7348. With VXLAN the size of the identifier is expanded to 24 bits (16777216). It creates a Layer 2 overlay scheme on a Layer 3 network and the protocol runs over UDP. RouterOS VXLAN interface supports IPv4 or IPv6 (since version 7.6), but dual-stack is not supported.
VXLAN创建一个50-byte开销IPv4和70-byte overhead for IPv6. When configuring VXLAN, it is recommended to ensure that the size of the encapsulated Ethernet frame does not exceed the MTU of the underlying network, by configuring the MTU accordingly or by limiting the size of the Ethernet frames.
Only devices within the same VXLAN segment can communicate with each other. Each VXLAN segment is identified through a 24-bit segment ID, termed the VXLAN Network Identifier (VNI). Unlike most tunnels, a VXLAN is a 1-to-N network, not just point-to-point. VXLAN endpoints, which terminate VXLAN tunnels are known as VXLAN tunnel endpoints (VTEPs). RouterOS only supports statically configured remote VTEPs. When unicast traffic needs to be sent over VXLAN, a device can learn the IP address of the other endpoint dynamically in a manner similar to a learning bridge, and forward traffic only to the necessary VTEP. For traffic that needs to be flooded (broadcast, unknown-unicast, and multicast) to all VTEPs on the same segment, VXLAN can use multicast or unicast with head-end replication to send one replica for every remote VTEP.
Configuration options
This section describes the VXLAN interface and VTEP configuration options.
Sub-menu:/interface vxlan
Property |
Description |
---|---|
allow-fast-path(是的|不; Default:yes) | Whether to allowFast Pathprocessing. Fragmented and flooded packets over VXLANare redirected via a slow path. Fast Path is disabled for VXLAN interface that uses IPv6 VTEP version or VRF. The setting is available since RouterOS version 7.8. |
arp(disabled | enabled | local-proxy-arp | proxy-arp | reply-only; Default:enabled) | Address Resolution Protocol setting
|
arp-timeout(auto | integer; Default:auto) | How long the ARP record is kept in the ARP table after no packets are received from IP. Valueauto equals to the value ofarp-timeout inIP/Settings, default is the 30s. |
comment(string; Default: ) | Short description of the interface. |
disabled(是的|不; Default:no) | Changes whether the interface is disabled. |
dont-fragment(disabled | enabled | inherit; Default:disabled) | The Don't Fragment (DF) flag controls whether a packet can be broken into smaller packets, called fragments, before being sent over a network. When configuring VXLAN, this setting determines the presence of the DF flag on the outer IPv4 header and can control packet fragmentation if the encapsulated packet exceeds the outgoing interface MTU. This setting has three options:
The setting is available since RouterOS version 7.8. |
group(IPv4 | IPv6; Default: ) | When specified, a multicast group address can be used to forward broadcast, unknown-unicast, and multicast traffic between VTEPs. This property requires specifying theinterface setting. The interface will use IGMP or MLD to join the specified multicast group, make sure to add the necessary PIM and IGMP/MDL configuration. When this property is set, thevteps-ip-version automatically gets updated to the used multicast IP version. |
interface(name; Default:) | Interface name used for multicast forwarding. This property requires specifying thegroup setting. |
local-address(IPv4 | IPv6; Default: ) | Specifies the local source address for the VXLAN interface. If not set, one IP address of the egress interface will be selected as a source address for VXLAN packets. When the property is set, thevteps-ip-version automatically gets updated to the used local IP version. The setting is available since RouterOS version 7.7. |
mac-address(MAC; Default: ) | Static MAC address of the interface. Arandomly generated MAC address will be assigned when not specified. |
max-fdb-size(integer: 1..65535; Default:4096) | Limits the maximum number of MAC addresses that VXLAN can store in the forwarding database (FDB). |
mtu(integer; Default:1500) | For the maximum transmission unit, the VXLAN interface will set MTU to 1500 by default. The |
name(text; Default:vxlan1) | Name of the interface. |
port(integer: 1..65535; Default:8472) | Used UDP port number. |
vni(integer: 1..16777216; Default:) | VXLAN Network Identifier (VNI). |
vrf(name; Default:main) |
Set VRF for the VXLAN interface on which the VTEPs listen and make connections. VRF is not supported when usinginterface and multicastgroup settings. The same UDPport cannot be used in multiple routing tables at the same time. The setting is available since RouterOS version 7.7. |
vteps-ip-version(ipv4 | ipv6; Default:ipv4) | Used IP protocol version for statically configured VTEPs. RouterOS VXLAN interface does not support dual-stack, any configured remote VTEPs with the opposite IP version will be ignored. When multicast |
Sub-menu:/interface vxlan vteps
Property |
Description |
---|---|
interface(name; Default:) | VXLAN接口的名称。 |
port(integer: 1..65535; Default:8472) | Used UDP port number. |
remote-ip(IPv4 | IPv6; Default:) | The IPv4 or IPv6 destination address of remote VTEP. |
Forwarding table
Since RouterOS version 7.9, it is possible to monitor the learned MAC addresses from remote VTEPs.
Sub-menu:/interface vxlan fdb
Property |
Description |
---|---|
interface(read-only:name) | VXLAN接口的名称。 |
mac-address(read-only: MAC address) | MAC address. |
remote-ip(read-only: IPv4 | IPv6 address) | The IPv4 or IPv6 destination address of remote VTEP. |
[admin@MikroTik] > /interface vxlan fdb print 0 remote-ip=2001::2 mac-address=56:FF:AA:1A:72:33 interface=vxlan1 1 remote-ip=2002::2 mac-address=AE:EC:C4:12:8B:B9 interface=vxlan1 2 remote-ip=192.168.10.20 mac-address=FE:AF:58:31:A7:B6 interface=vxlan2
Configuration example
This configuration example creates a single VXLAN tunnel between two statically configured VTEP endpoints.
First, create VXLAN interfaces on both routers.
/interface vxlan add name=vxlan1 port=8472 vni=10
Then configure VTEPs on both routers with respective IPv4 destination addresses. Both devices should have an active route toward the destination address.
# Router1 /interface vxlan vteps add interface=vxlan1 remote-ip=192.168.10.10 # Router2 /interface vxlan vteps add interface=vxlan1 remote-ip=192.168.20.20
Configuration is complete. It is possible to include the VXLAN interface into a bridge with other Ethernet interfaces.