VXLAN – A quick overview

Virtual Extensible LAN -VXLAN

Why is it needed ?

As we move into cloud computing era with multi-tenant infrastructure, there are scalability concerns with only having 4094 networks acheived through VLANs/802.1q

Virtual Extensible LAN (VXLAN) can aid in alleviating the scalability concerns for larger environments.

Key Acronyms

VXLAN – Virtual Extensible Local Area Network
VXLAN Segment/Overlay network – VXLAN Layer 2 network over which VMs communicate
VNI –  VXLAN Network Identifier (or VXLAN Segment ID)
VTEP – VXLAN Tunnel End Point – an entity which originates and terminates VXLAN tunnels
VXLAN Gateway – an entity which forwards traffic between VXLAN and non-VXLAN environments

How is it done ?

VXLAN is an Layer 2 overlay network over Layer 3 network.

It uses a VLAN-like encapsulation technique to encapsulate MAC-based OSI layer 2 Ethernet frames within layer 3 UDP packets, it is distinguished by a unique VXLAN Network Identifier(VNI).

Think of this as a logical network(Layer 2 network) capable of spanning across a layer 3 network.

Workflow for VM to VM communication

  1. Encapsulate network packet with UDP header comprising a 24 bit-VXLAN ID.
  2. UDP frame is again padded with a 802.1Q VLAN tag correlating to a participating ESX-VMkernel Interface.
  3. Each ESX host-VMkernel interface then becomes a Virtual tunnel Endpoint(VTEP) with VXLAN participants(Virtual Machines) behind it.
  4. Hosts VMKernel interfaces communicate with standard VLANs and know of Virtual Machine(VXLAN) behind each other by monitoring ARP requests and updating their MAC tables.

Lo and Behold now we have 16 million logical networks not in thousands and along with it brings the advantages that conventional 802.1Q brought to the table, in-terms of performance/segmentation.

Additional References:

https://blogs.vmware.com/vsphere/2013/05/vxlan-series-how-vtep-learns-and-creates-forwarding-table-part-5.html

Do note that this may become legacy soon, here is why http://tools.ietf.org/id/draft-gross-geneve-00.txt

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s