FreeBSD Manual Pages
VXLAN(4) Kernel Interfaces Manual VXLAN(4) NAME vxlan -- Virtual eXtensible LAN interface SYNOPSIS To compile this driver into the kernel, place the following line in your kernel configuration file: device vxlan Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): if_vxlan_load="YES" DESCRIPTION The vxlan driver creates a virtual tunnel endpoint in a vxlan segment. A vxlan segment is a virtual Layer 2 (Ethernet) network that is over- laid in a Layer 3 (IP/UDP) network. vxlan is analogous to vlan(4) but is designed to be better suited for large, multiple tenant data center environments. Each vxlan interface is created at runtime using interface cloning. This is most easily done with the ifconfig(8) create command or using the cloned_interfaces variable in rc.conf(5). The interface may be re- moved with the ifconfig(8) destroy command. The vxlan driver creates a pseudo Ethernet network interface that sup- ports the usual network ioctl(2)s and thus can be used with ifconfig(8) like any other Ethernet interface. The vxlan interface encapsulates the Ethernet frame by prepending IP/UDP and vxlan headers. Thus, the encapsulated (inner) frame is able to be transmitted over a routed, Layer 3 network to the remote host. The vxlan interface may be configured in either unicast or multicast mode. When in unicast mode, the interface creates a tunnel to a single remote host, and all traffic is transmitted to that host. When in mul- ticast mode, the interface joins an IP multicast group, and receives packets sent to the group address, and transmits packets to either the multicast group address, or directly to the remote host if there is an appropriate forwarding table entry. When the vxlan interface is brought up, a udp(4) socket(9) is created based on the configuration, such as the local address for unicast mode or the group address for multicast mode, and the listening (local) port number. Since multiple vxlan interfaces may be created that either use the same local address or join the same group address, and use the same port, the driver may share a socket among multiple interfaces. How- ever, each interface within a socket must belong to a unique vxlan seg- ment. The analogous vlan(4) configuration would be a physical inter- face configured as the parent device for multiple VLAN interfaces, each with a unique VLAN tag. Each vxlan segment is identified by a 24-bit value in the vxlan header called the "VXLAN Network Identifier", or VNI. When configured with the ifconfig(8) vxlanlearn parameter, the inter- face dynamically creates forwarding table entries from received pack- ets. An entry in the forwarding table maps the inner source MAC ad- dress to the outer remote IP address. During transmit, the interface attempts to lookup an entry for the encapsulated destination MAC ad- dress. If an entry is found, the IP address in the entry is used to directly transmit the encapsulated frame to the destination. Other- wise, when configured in multicast mode, the interface must flood the frame to all hosts in the group. The maximum number of entries in the table is configurable with the ifconfig(8) vxlanmaxaddr command. Stale entries in the table are periodically pruned. The timeout is config- urable with the ifconfig(8) vxlantimeout command. The table may be viewed with the sysctl(8) net.link.vxlan.N.ftable.dump command. MTU Since the vxlan interface encapsulates the Ethernet frame with an IP, UDP, and vxlan header, the resulting frame may be larger than the MTU of the physical network. The vxlan specification recommends the physi- cal network MTU be configured to use jumbo frames to accommodate the encapsulated frame size. By default, the vxlan driver sets its MTU to usual ethernet MTU of 1500 bytes, reduced by the size of vxlan headers prepended to the encapsu- lated packets. Alternatively, the ifconfig(8) mtu command may be used to set the fixed MTU size on the vxlan interface to allow the encapsulated frame to fit in the current MTU of the physical network. If the mtu command was used, system no longer adjust the vxlan interface MTU on routing or ad- dress changes. HARDWARE The vxlan driver supports hardware checksum offload (receive and trans- mit) and TSO on the encapsulated traffic over physical interfaces that support these features. The vxlan interface examines the vxlandev in- terface, if one is specified, or the interface hosting the vxlanlocal address, and configures its capabilities based on the hardware offload capabilities of that physical interface. If multiple physical inter- faces will transmit or receive traffic for the vxlan then they all must have the same hardware capabilities. The transmit routine of a vxlan interface may fail with ENXIO if an outbound physical interface does not support an offload that the vxlan interface is requesting. This can happen if there are multiple physical interfaces involved, with different hardware capabilities, or an interface capability was dis- abled after the vxlan interface had already started. At present, these devices are capable of generating checksums and per- forming TSO on the inner frames in hardware: cxgbe(4). EXAMPLES Create a vxlan interface in unicast mode with the vxlanlocal tunnel ad- dress of 192.168.100.1, and the vxlanremote tunnel address of 192.168.100.2. ifconfig vxlan create vxlanid 108 vxlanlocal 192.168.100.1 vxlanremote 192.168.100.2 Create a vxlan interface in multicast mode, with the local address of 192.168.10.95, and the group address of 224.0.2.6. The em0 interface will be used to transmit multicast packets. ifconfig vxlan create vxlanid 42 vxlanlocal 192.168.10.95 vxlangroup 224.0.2.6 vxlandev em0 Once created, the vxlan interface can be configured with ifconfig(8). The following when placed in the file /etc/rc.conf will cause a vxlan interface called "vxlan0" to be created, and will configure the inter- face in unicast mode. cloned_interfaces="vxlan0" create_args_vxlan0="vxlanid 108 vxlanlocal 192.168.100.1 vxlanremote 192.168.100.2" SEE ALSO inet(4), inet6(4), vlan(4), rc.conf(5), ifconfig(8), sysctl(8) M. Mahalingam and et al, Virtual eXtensible Local Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks over Layer 3 Networks, August 2014, RFC 7348. AUTHORS The vxlan driver was written by Bryan Venteicher <bryanv@freebsd.org>. Support for stateless hardware offloads was added by Navdeep Parhar <np@freebsd.org> in FreeBSD 13.0. FreeBSD 13.2 March 30, 2021 VXLAN(4)
NAME | SYNOPSIS | DESCRIPTION | MTU | HARDWARE | EXAMPLES | SEE ALSO | AUTHORS
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=vxlan&manpath=FreeBSD+14.2-RELEASE+and+Ports>