Describe Characteristics of Network Topology Architectures

Describe characteristics of network topology architectures

Every network — from a small home office to a global cloud provider’s data center — is built around some underlying topology: a pattern describing how devices are physically or logically connected to one another. Choosing the right topology affects everything: cost, redundancy, scalability, performance, and how easy the network is to troubleshoot.

This article walks through the major network topology architectures you’ll encounter in real networks and on the CCNA exam: two-tier (collapsed core), three-tier, spine-leaf, along with cloud and WAN architecture concepts like on-premises, cloud, and hybrid designs, and SDA (Software-Defined Access).

What Is Network Topology?

A topology describes the arrangement of network devices and the links between them. There are two perspectives:

Traditional Three-Tier Hierarchical Architecture

This is the classic Cisco-recommended enterprise campus design, consisting of three layers:

graph TB
    subgraph Core["Core Layer"]
        C1["Core Switch 1"]
        C2["Core Switch 2"]
    end
    subgraph Distribution["Distribution Layer"]
        D1["Dist Switch 1"]
        D2["Dist Switch 2"]
    end
    subgraph Access["Access Layer"]
        A1["Access SW 1"]
        A2["Access SW 2"]
        A3["Access SW 3"]
    end
    C1 --- D1
    C1 --- D2
    C2 --- D1
    C2 --- D2
    D1 --- A1
    D1 --- A2
    D2 --- A2
    D2 --- A3

The Three Layers Explained

LayerPurposeCharacteristics
Access LayerWhere end devices connect (PCs, phones, printers, APs)High port density, PoE, VLAN assignment, port security
Distribution LayerAggregates access switches, enforces policyRouting between VLANs, ACLs, QoS policy, redundancy (HSRP/VRRP)
Core LayerHigh-speed backbone connecting distribution blocksFast switching/routing only — minimal policy processing, maximum speed and redundancy

Characteristics

Two-Tier (Collapsed Core) Architecture

In smaller networks, the distribution and core layers are collapsed into a single layer, reducing cost and complexity while sacrificing some scalability.

graph TB
    subgraph CollapsedCore["Collapsed Core/Distribution Layer"]
        CD1["Switch 1"]
        CD2["Switch 2"]
    end
    subgraph Access["Access Layer"]
        A1["Access SW 1"]
        A2["Access SW 2"]
    end
    CD1 --- CD2
    CD1 --- A1
    CD1 --- A2
    CD2 --- A1
    CD2 --- A2

Characteristics

Spine-Leaf Architecture (Data Center)

Spine-leaf is the dominant modern data center topology, designed for the very different traffic patterns found in data centers, where most traffic flows server-to-server (east-west) rather than client-to-server (north-south) as in traditional campus networks.

graph TB
    subgraph Spine["Spine Layer"]
        S1["Spine 1"]
        S2["Spine 2"]
    end
    subgraph Leaf["Leaf Layer"]
        L1["Leaf 1"]
        L2["Leaf 2"]
        L3["Leaf 3"]
    end
    S1 --- L1
    S1 --- L2
    S1 --- L3
    S2 --- L1
    S2 --- L2
    S2 --- L3

Key Characteristics

Comparison Table: Three-Tier vs. Two-Tier vs. Spine-Leaf

CharacteristicThree-TierTwo-Tier (Collapsed Core)Spine-Leaf
Typical use caseLarge campus/enterpriseSmall/medium campusData center
Number of layers3 (Core, Distribution, Access)2 (Collapsed Core/Dist, Access)2 (Spine, Leaf)
Traffic pattern optimized forNorth-south (client-server)North-southEast-west (server-server)
Redundancy mechanismDual uplinks + STP/HSRPDual uplinks + STP/HSRPECMP over Layer 3 routing
ScalabilityGood, but requires re-architecture at scaleLimitedExcellent — horizontal scaling
Predictable latencyNo — depends on path through hierarchyNoYes — always leaf-spine-leaf
CostHighestLowestModerate-to-high (many links)

On-Premises, Cloud, and Hybrid Architectures

Beyond physical topology shapes, modern network design also considers where infrastructure lives.

On-Premises

All infrastructure (servers, switches, routers, firewalls) is owned, hosted, and managed within the organization’s own physical facilities.

Cloud

Infrastructure and services run on a third-party provider’s platform (AWS, Azure, Google Cloud), accessed over the Internet or private connections.

Hybrid

A combination of on-premises and cloud resources, often connected via a dedicated private link (e.g., AWS Direct Connect, Azure ExpressRoute) or a secure VPN tunnel.

graph LR
    OnPrem["On-Premises Data Center"] ---|"VPN / Direct Connect / ExpressRoute"| Cloud["Public Cloud (AWS/Azure/GCP)"]
    Users["Remote Users"] --> Cloud
    Users --> OnPrem

Software-Defined Access (SDA)

SDA is Cisco’s software-defined networking architecture for campus networks, built on top of a physical spine-leaf-like fabric. It separates the network into:

Characteristics

WAN Topology Types

At the wide-area network level, several classic topology shapes describe how remote sites connect:

TopologyDescriptionCharacteristics
Hub-and-spokeAll remote sites (spokes) connect to a central site (hub)Simple, cost-effective, but spoke-to-spoke traffic must transit the hub (extra latency); hub is a single point of failure unless made redundant
Full meshEvery site connects directly to every other siteBest performance and redundancy, but cost and complexity grow rapidly (n(n-1)/2 links)
Partial meshSome, but not all, sites have direct connectionsBalances cost and performance — critical/high-traffic site pairs get direct links, others go through an intermediate hub
graph TB
    subgraph HubSpoke["Hub-and-Spoke"]
        H["Hub Site"]
        S1["Spoke 1"]
        S2["Spoke 2"]
        S3["Spoke 3"]
        H --- S1
        H --- S2
        H --- S3
    end

Best Practices for Choosing a Topology

  1. Match the topology to the traffic pattern. Client-server-heavy campus networks fit three-tier/two-tier designs; server-to-server-heavy data centers fit spine-leaf.
  2. Design for the future, not just today. A two-tier network that works today may need to evolve into three-tier as the organization grows — plan expansion points in advance.
  3. Always build in redundancy at every layer where budget allows — single points of failure (a single core switch, a single WAN hub) undermine the whole design.
  4. Consider operational complexity, not just technical elegance. A full-mesh WAN might be technically ideal but operationally and financially impractical for many organizations — partial mesh or hub-and-spoke may be the pragmatic choice.
  5. Evaluate hybrid cloud connectivity requirements early — retrofitting secure, reliable cloud connectivity into an existing on-premises design is harder than planning for it from the start.

Troubleshooting Topology-Related Issues

Summary

Network topology architecture is about matching the shape of your network to the shape of your traffic and your organization’s growth plans. Three-tier designs suit large, hierarchical campus networks; two-tier (collapsed core) suits smaller ones; spine-leaf suits data centers with heavy east-west traffic; and modern approaches like SDA and hybrid cloud connectivity add software-defined flexibility and multi-environment integration on top of these physical foundations. Understanding the strengths and trade-offs of each architecture is essential for designing networks that are both performant today and adaptable tomorrow.

Further Reading

Exit mobile version