• Modern data centers host thousands of virtual machines distributed across many physical servers.
    This creates a significant networking challenge for engineers.

    The VLAN Scalability Problem

    These virtual machines require Layer 2 connectivity.
    They must behave as if they are on the same switch, even across different racks or buildings.

    Traditional VLANs cannot meet this demand.
    The 802.1Q standard uses a 12-bit VLAN ID field, which limits you to 4094 VLANs across your entire infrastructure.

    4094 VLAN limit problem in multi-tenant data center

    Figure 1 – VLAN scalability limitation in a multi-tenant data center

    In a multi-tenant data center where each customer requires isolated network segments, that ceiling is reached quickly.

    There is a second problem.
    Modern data centers use a routed spine-leaf architecture where every link is a Layer 3 link.
    VLANs are a Layer 2 construct and cannot cross Layer 3 boundaries without complex workarounds.

    VXLAN as the Solution

    VXLAN (Virtual eXtensible LAN), defined in RFC 7348, solves both problems.

    It encapsulates Layer 2 Ethernet frames inside UDP packets, creating a virtual Layer 2 network that travels freely across any Layer 3 infrastructure.

    VXLAN logical overlay tunnel built over the underlay

    Figure 2 – The VXLAN

    Instead of a 12-bit VLAN ID, VXLAN uses a 24-bit VNI (VXLAN Network Identifier).
    That is over 16 million unique segments, enough for any multi-tenant environment at any scale.

    Answer the question below

    What is the maximum number of VLANs supported by 802.1Q?