Think of any data center network as a set of “roads” (links), “intersections” (switches/routers), and “rules” (routing, segmentation, security). In VMware Cloud Foundation (VCF) networking, you still depend on those physical roads, but you add a virtualization layer that lets you create logical networks (segments), logical routers (gateways), and policies that behave like a software-defined version of a traditional network.
Two foundation ideas you’ll use constantly:
A practical beginner way to model traffic in VCF/NSX environments is to split the path into three layers:
Common “directions” of traffic:
Scenario A: Building a simple multi-tier application network
You might create separate logical segments for web, app, and database tiers, then connect them through a logical gateway. Even before touching any advanced features, you should be able to describe:
Scenario B: “We have many networks, but limited VLANs”
This is where overlays shine: logical segments can scale without mapping every network to a physical VLAN. Operations-wise, you learn to validate that:
Scenario C: Hybrid connectivity to an upstream network
Even when the virtualization layer is doing logical switching/routing, you still need a clean handoff to the physical world: a stable egress point and a clear routing plan (static routes, dynamic routing, or a controlled combination).
At this level, the exam tends to reward clear mental models, not memorized trivia. Make sure you can:
You now have the “map legend” for everything else in this study pack: physical transport, logical overlays, and where routing/policy decisions happen. Next, you’ll connect these generic concepts to the specific VCF product portfolio and the major networking components you’ll operate and troubleshoot.
On the exam, “the network design” is often the hidden constraint. Two designs can both route IP, but only one produces predictable paths for overlays and stateful services.
Expect scenario language like “spine-leaf,” “ECMP,” “multiple uplinks,” “redundant paths,” or “intermittent after failover.” Your job is to connect those words to path predictability and stateful behavior.
What is the primary role of the Central Control Plane (CCP) in VMware NSX architecture?
The Central Control Plane computes runtime network state and distributes topology information to the Local Control Plane on transport nodes.
NSX separates the networking architecture into management plane, control plane, and data plane. The Central Control Plane (CCP) calculates routing tables, logical switch topology, and tunnel endpoints required for overlay networking. Once calculated, this state information is distributed to the Local Control Plane (LCP) running on ESXi hosts and Edge nodes. These transport nodes then use the received instructions to forward traffic at line speed in the data plane. The CCP does not forward packets itself; forwarding happens locally on hosts using the distributed router. This architecture allows NSX to scale to thousands of nodes without relying on centralized packet processing. A common mistake is assuming the control plane forwards traffic; in reality it only distributes network state while the distributed data plane handles actual packet forwarding.
Demand Score: 76
Exam Relevance Score: 90
Why does NSX use Geneve instead of VXLAN for overlay networking?
Geneve provides a more extensible encapsulation format that supports metadata and advanced networking features required by modern SDN environments.
VMware NSX transitioned from VXLAN to Geneve because Geneve allows flexible metadata fields in the encapsulation header. These fields enable advanced services such as distributed firewall rules, network introspection, and service insertion without changing the underlying packet structure. VXLAN has a fixed header and limited extensibility, which restricts future capabilities. In contrast, Geneve allows NSX to embed policy information and flow identifiers directly in packets traveling across the overlay network. This is particularly important in Cloud Foundation environments, where security and micro-segmentation policies must follow workloads across hosts. Another advantage is improved integration with modern programmable networking hardware. Therefore, Geneve provides the extensibility necessary for scalable software-defined networking.
Demand Score: 71
Exam Relevance Score: 85
What is the difference between overlay and underlay networking in VMware Cloud Foundation?
The underlay provides IP connectivity between physical hosts, while the overlay creates logical networks using encapsulated tunnels between transport nodes.
In VMware Cloud Foundation networking, the underlay network refers to the physical infrastructure, including switches, routers, and IP addressing that connect ESXi hosts and Edge nodes. Its main responsibility is simple IP reachability and routing. The overlay network, built by NSX, runs on top of this physical infrastructure and creates logical switches and routers using encapsulated tunnels such as Geneve. These tunnels allow virtual machines to communicate across hosts as if they were on the same Layer-2 network, even when the physical network is Layer-3 only. This separation allows administrators to design flexible virtual networks without modifying physical switch configurations. A common troubleshooting step is verifying that underlay connectivity exists between Tunnel Endpoints (TEPs); without it, overlay tunnels cannot form.
Demand Score: 73
Exam Relevance Score: 92
What component performs distributed routing for East-West traffic in NSX?
The NSX Distributed Router (DR) running on transport nodes handles East-West traffic routing.
In traditional networking, routing occurs on centralized hardware routers. In NSX, the Distributed Router is implemented in the hypervisor kernel on every transport node. This means that when two virtual machines communicate across logical networks on the same host or different hosts, the routing decision occurs locally on the ESXi host instead of sending traffic to an external router. This dramatically reduces latency and avoids unnecessary traffic hair-pinning through Edge nodes. Edge nodes are typically used for North-South traffic, such as connections to external networks, NAT, and load balancing services. Understanding this distributed routing model is critical for troubleshooting performance issues and designing scalable architectures in VMware Cloud Foundation environments.
Demand Score: 68
Exam Relevance Score: 88