In this post I will explain how NSX-T create and maintains various table which forms the building block of logical switching. Basically I will discuss about formation of below tables:
- VTEP Table
- MAC Table
- ARP Table
These tables are continuously updated and modified as we provision new workloads and create new segments.
VTEP Table
This table holds the VNI to TEP IP mapping. A couple of points before we start.
- Each segment has a unique identifier called VNI.
- Each transport node in that TZ will have a TEP IP.
Lets understand TEP table creation with the help of below diagram.
Step 1: As soon as a segment is created in a TZ, all transport node of that TZ updates its local TEP table and registers VNI of the created segment against its TEP IP. Each transport node then send this info to Local Control Plane (LCP).
Note: VTEP can be viewed by logging into ESXi host and running command: get logical-switch <ls-uuid> vtep-table
Step 2: Each transport nodes then send their VNI-TEP entry from its LCP to CCP (running on NSX-T Manager).… Read More