Network Topologies and Design Patterns

Key Takeaways

  • Star topologies centralize endpoints on one switch; the central device is the single point of failure.
  • Full mesh of n nodes needs n(n-1)/2 links, so cost and complexity explode; partial mesh balances resilience and cost.
  • Spine-leaf uses every-leaf-to-every-spine links with ECMP for predictable two-hop east-west paths and never directly links leaf-to-leaf.
  • Three-tier (access, distribution, core) suits large campuses; collapsed core merges distribution and core for smaller sites.
  • Hub-and-spoke centralizes branch traffic on a hub (a bottleneck and failure point); point-to-point is one dedicated link.
Last updated: June 2026

Reading Topology Questions

Topology items ask how devices interconnect and what happens during growth or a single failure. The right answer follows the dominant traffic pattern and the resilience requirement. Watch for the words "redundant," "east-west," "bottleneck," "single point of failure," and "scale."

TopologyMeaningStrengthWeakness
StarEndpoints to one central switchSimple, cheap, easy to manageCentral device is a single point of failure
Full meshEvery node to every other nodeMaximum path redundancyn(n-1)/2 links; costly, complex
Partial meshSome redundant interconnectsBalances cost and resilienceNeeds routing design
Point-to-pointOne direct link, two nodesSimple dedicated pathLink loss isolates both ends
Hub-and-spokeBranches via a central hubCentralized control/policyHub bottleneck and failure point
Spine-leafEach leaf to each spinePredictable two-hop east-westNeeds consistent design + ECMP

The full-mesh link count is n(n-1)/2: 5 nodes need 10 links, 10 nodes need 45. That math is why full mesh is reserved for small, critical cores and why partial mesh dominates real WANs.

Campus Designs: Three-Tier and Collapsed Core

Large campuses use three hierarchical tiers; smaller sites collapse the top two into one block.

LayerRoleTypical devices
AccessConnects endpointsAccess switches, APs, phones, cameras
DistributionAggregates access, applies policyLayer 3 switches, ACLs, routing boundary
CoreHigh-speed transport between blocksRedundant high-throughput switches
DesignBest fitExam clue
Three-tierLarge campusDistinct access, distribution, core
Collapsed coreSmall/medium campusDistribution + core merged
Spine-leafData centerEast-west traffic, leaf uplinks to every spine

The distribution layer is where most inter-VLAN routing, first-hop redundancy (FHRP/HSRP/VRRP), and access control lists live. Collapsing the core saves switch cost when there are only a few distribution blocks, but it removes a dedicated fast-transit layer, so it is a small-network choice.

Spine-Leaf Fabrics

In a spine-leaf fabric, servers attach to leaf switches and every leaf uplinks to every spine switch. Leaves do not connect to leaves, and spines do not connect to spines. The result is a deterministic two hops between any pair of servers (leaf-spine-leaf), and equal-cost multipath (ECMP) spreads flows across all spine links. This replaces the old three-tier model for data centers where most traffic is server-to-server.

Traffic patternDefinitionDesign concern
North-southClient/internet to serverEdge/firewall throughput
East-westServer to server, storage replication, microservicesConsistent low-latency fabric
Predictable latencySame hop count for any pairSpine-leaf delivers two hops
Fast growthAdd ports vs add bandwidthAdd leaves for ports, spines for bandwidth

When the scenario emphasizes heavy east-west traffic and unpredictable aggregation bottlenecks, spine-leaf is the design answer. To add server ports you add leaves; to add fabric bandwidth you add spines.

WAN Patterns and Worked Scenarios

Hub-and-spoke routes every branch (spoke) through a central hub, common when sites share a headquarters or cloud security stack. Point-to-point is one direct circuit between two sites. Mesh WAN gives sites direct paths but multiplies cost and complexity.

ScenarioLikely pattern
Branches send all traffic through HQHub-and-spoke
Two data centers on one private circuitPoint-to-point
Every branch can reach every other branch directlyMesh
Office endpoints all home to one access switchStar

Scenario 1: A data-center app has heavy server-to-server traffic and unpredictable congestion through aggregation switches. Spine-leaf is correct: every leaf has equal uplinks to all spines, ECMP balances load, and any server pair is two hops apart.

Scenario 2: A small campus has two access closets and one redundant pair of Layer 3 switches doing both policy and fast transport. That is a collapsed core, because distribution and core roles are combined rather than separated into three tiers.

Failure-Impact Drill

Expect questions that ask what breaks during a single failure and how to mitigate it. Reason from where the single point of failure sits.

FailureWhat breaks in a simple designMitigation
Star central switch failsAll attached endpoints lose connectivityRedundant access/uplinks where justified
Hub site in hub-and-spoke failsSpokes lose shared paths and central servicesRedundant hubs or backup direct paths
One point-to-point link failsBoth endpoints lose that pathSecondary circuit or alternate route
One spine fails in spine-leafLeaves keep using remaining spinesMultiple spines + ECMP absorbs loss
Single distribution switch failsOne block loses routing/policyFHRP pair (HSRP/VRRP), redundant uplinks

Key contrast for the exam: a star fails hard at its center, but a well-built spine-leaf degrades gracefully because losing one spine only reduces bandwidth, not connectivity. That difference in blast radius is exactly what topology questions probe, so pair each design with its single-failure behavior as you study.

Test Your Knowledge

A data-center design connects every leaf switch to every spine switch and uses equal-cost multipath to support predictable east-west traffic. Which topology is this?

A
B
C
D
Test Your Knowledge

A small campus combines distribution and core functions into one redundant Layer 3 switch pair. Which design is described?

A
B
C
D
Test Your Knowledge

A full-mesh WAN must connect 5 sites with a direct link between every pair. How many links are required?

A
B
C
D