Basic Active Components of a Hierarchical Star Network in Commercial Buildings and Networks

Basic Active Components of a Hierarchical Star Network in Commercial Buildings and Networks

Walk into almost any modern commercial building — an office tower, a hospital, a university, a shopping mall — and somewhere behind the walls and ceilings lies a carefully organized network topology called a hierarchical star network. This design has become the overwhelming standard for structured cabling in commercial buildings because it is scalable, manageable, and resilient. In this article, we’ll explore, from first principles, what a hierarchical star topology actually is, and specifically focus on the active components — the powered, “intelligent” devices — that make this network architecture function.


What Is a Star Topology?

Before understanding the “hierarchical” part, let’s establish what a basic star topology is. In a star topology, every device connects to a single central point — typically a switch — rather than connecting directly to each other in a chain or ring. If you drew this out, it would look like a star shape, with the central switch in the middle and lines radiating out to each connected device.

graph TD
    A[Central Switch] --- B[Device 1]
    A --- C[Device 2]
    A --- D[Device 3]
    A --- E[Device 4]

Why Star Topology Won Over Older Designs

Older network topologies, like bus topology (all devices sharing a single cable) or ring topology (devices connected in a circular chain), had a significant weakness: a single cable break or device failure could bring down the entire network, or at least a large segment of it. In a star topology, if one device’s cable fails, only that single device loses connectivity — everyone else continues working normally, since each device has its own dedicated connection back to the central switch.


What Makes It “Hierarchical”?

A single star topology works fine for a small number of devices, but it doesn’t scale well to an entire commercial building with hundreds or thousands of devices spread across multiple floors. A hierarchical star topology solves this by creating multiple layers of star networks, connected together in a structured, tree-like hierarchy.

graph TD
    A[Core Layer - Main Building Switch/Router] --> B[Distribution Layer - Floor 1 Switch]
    A --> C[Distribution Layer - Floor 2 Switch]
    A --> D[Distribution Layer - Floor 3 Switch]
    B --> E[Access Layer - Office Switch 1A]
    B --> F[Access Layer - Office Switch 1B]
    C --> G[Access Layer - Office Switch 2A]
    D --> H[Access Layer - Office Switch 3A]
    E --> I[End Devices - Computers, Phones, APs]
    F --> J[End Devices]
    G --> K[End Devices]
    H --> L[End Devices]

This layered design is often called the three-tier hierarchical network model, consisting of:

  1. Core Layer: The high-speed backbone of the network, responsible for fast, reliable transport of large amounts of aggregated traffic between different parts of the building or campus.
  2. Distribution Layer: Sits between the core and access layers, often handling routing between different VLANs, applying security policies, and aggregating traffic from multiple access switches before sending it up to the core.
  3. Access Layer: The layer that end devices (computers, phones, printers, wireless access points) actually plug into directly.

In smaller networks, the core and distribution layers are sometimes combined (a “two-tier” or “collapsed core” design), but the fundamental hierarchical, star-of-stars principle remains the same.


Active Components Explained

Now let’s focus on the actual active components — the powered devices with electronics inside that actively process, forward, or make decisions about network traffic, as opposed to passive components like cabling, patch panels, and connectors, which simply provide a physical pathway without any active processing.

1. Core Switches/Routers

Located at the top of the hierarchy, core switches (and often an integrated or separate router) handle the highest volume of aggregated traffic in the entire network. These devices are typically:

  • High-performance and non-blocking (as discussed in our blocking vs non-blocking switches article), since they must handle traffic aggregated from many distribution and access switches simultaneously.
  • Redundant, often deployed in pairs, so that if one core switch fails, the other can immediately take over without disrupting the network.
  • Equipped with high-speed uplinks, often using fiber optic connections and high-capacity transceiver modules (like QSFP28 for 100 Gbps links).

2. Distribution Switches (Sometimes Called Aggregation Switches)

These sit in the middle layer, aggregating traffic from multiple access switches before forwarding it to the core. Distribution switches often handle:

  • Inter-VLAN routing: Since access switches typically host multiple VLANs (voice, data, guest network, security systems), distribution-layer devices (often Layer 3 switches, capable of routing as well as switching) handle traffic moving between these different VLANs.
  • Policy enforcement: Access control lists (ACLs), quality of service (QoS) policies, and security filtering are frequently applied at this layer.
  • Redundant uplinks: Distribution switches typically connect to the core via at least two separate physical paths, protected by protocols like Spanning Tree Protocol (STP) or more modern alternatives, to prevent loops while still providing a backup path if one connection fails.

3. Access Switches

Located at the bottom of the hierarchy, access switches are what end devices physically plug into. Key characteristics include:

  • High port density: Since access switches connect directly to end devices, they typically have many ports (24 or 48 being common) to serve a floor or section of a building.
  • PoE capability: As discussed in our article on connecting wireless devices via copper cabling, access switches frequently provide Power over Ethernet to phones, wireless access points, and security cameras.
  • VLAN assignment: Access switch ports are configured to place connected devices into the appropriate VLAN based on their function (a computer into the “data” VLAN, a phone into the “voice” VLAN, and so on).

4. Wireless LAN Controllers (WLC)

In networks with many wireless access points, a Wireless LAN Controller is a specialized active component (sometimes a dedicated hardware appliance, sometimes a virtual/software instance, sometimes built into a core switch) that centrally manages all the wireless access points across the building — handling configuration, security policy, channel assignment, and roaming between access points as devices move throughout the building.

5. Routers and Firewalls

While often integrated into core switches in smaller networks, dedicated routers and firewalls are active components responsible for connecting the internal hierarchical network to external networks, most importantly the internet, and for enforcing security boundaries between different zones of trust.

graph LR
    A[Internal Hierarchical Star Network] --> B[Firewall]
    B --> C[Router]
    C --> D[Internet Service Provider]

Real-World Example: A Five-Floor Office Building

Let’s walk through a concrete example of how these active components would be deployed in a five-floor commercial office building.

  • Core Layer: A pair of redundant core switches, located in the main data center/MDF room, typically in the basement or a dedicated central room, connected to each other and to a pair of redundant firewalls/routers that connect to the internet.
  • Distribution Layer: Not always present as a separate physical layer in a building this size — often, the “distribution” function is combined into the core layer (a “collapsed core” design) for cost efficiency, since five floors may not generate enough traffic to justify a fully separate distribution tier.
  • Access Layer: One or two access switches per floor, located in each floor’s IDF (Intermediate Distribution Frame) telecommunications room, connecting to computers, phones, printers, and wireless access points on that floor.
  • Wireless LAN Controller: A centralized WLC (or a cloud-managed equivalent) managing all wireless access points across all five floors from a single management interface.

Cisco Example: Configuring an Access Switch Uplink to the Core

! On the Access Switch (Floor 3)
Switch(config)# interface GigabitEthernet1/0/48
Switch(config-if)# description Uplink to Core Switch
Switch(config-if)# switchport mode trunk
Switch(config-if)# switchport trunk allowed vlan 10,20,30,99
Switch(config-if)# channel-group 1 mode active
Switch(config-if)# exit

This configuration establishes a trunk port (carrying multiple VLANs) on the uplink, and adds it to a port channel (link aggregation group), which combines multiple physical links into one logical, higher-bandwidth, redundant connection back to the core — an important resiliency feature in hierarchical designs.

Python Example: Modeling a Simple Hierarchical Network for Documentation

network_hierarchy = {
    "Core": ["Core-Switch-A", "Core-Switch-B"],
    "Distribution": {
        "Floor1-Dist": ["Access-Switch-1A", "Access-Switch-1B"],
        "Floor2-Dist": ["Access-Switch-2A"],
    },
    "Access_Devices_Per_Switch": 48
}

total_access_switches = sum(len(v) for v in network_hierarchy["Distribution"].values())
total_capacity = total_access_switches * network_hierarchy["Access_Devices_Per_Switch"]

print(f"Total access switches: {total_access_switches}")
print(f"Total device capacity across access layer: {total_capacity}")

Output:

Total access switches: 3
Total device capacity across access layer: 144

This kind of simple modeling helps network planners quickly estimate total capacity across a hierarchical design as they plan for growth.

Linux Example: Verifying Path to the Core Network

From an end device connected to an access switch, verifying connectivity through the hierarchy can be done with a simple traceroute:

traceroute 8.8.8.8

# Example output showing hops through distribution and core layers:
# 1  192.168.3.1 (access switch/gateway on Floor 3 VLAN)
# 2  10.0.0.1 (distribution/core layer)
# 3  203.0.113.1 (firewall/router)
# 4  ... (ISP hops toward destination)

Each hop in this output corresponds to a layer in the hierarchical design, giving a clear, practical illustration of how traffic actually flows up through the tiers of the network.


Comparison Table: Active Components by Hierarchical Layer

LayerPrimary Active ComponentsMain Responsibilities
CoreCore switches, core routersHigh-speed backbone transport, redundancy, connecting distribution layers together
DistributionDistribution/aggregation switches, sometimes firewallsInter-VLAN routing, policy enforcement, aggregating access layer traffic
AccessAccess switches, wireless access pointsDirect end-device connectivity, PoE delivery, VLAN assignment
Management/OverlayWireless LAN Controllers, network management serversCentralized configuration, monitoring, and control across all layers

Why Hierarchical Design Matters: Key Benefits

  1. Scalability: New floors or buildings can be added by simply extending the hierarchy (adding another access switch, another distribution point) without redesigning the entire network.
  2. Fault isolation: A problem at the access layer (a single switch failing) affects only the devices connected to that switch, not the whole building.
  3. Simplified troubleshooting: Since traffic flows in a predictable, layered pattern, network engineers can systematically check each layer (access, distribution, core) when diagnosing a problem.
  4. Redundancy opportunities: Each layer can be independently made redundant (dual core switches, dual uplinks from access to distribution) without needing to duplicate the entire network.
  5. Consistent policy enforcement: Security and traffic management policies can be applied at logical points in the hierarchy (typically distribution or core) rather than needing to be configured individually on every single access switch.

Best Practices for Hierarchical Star Network Design

  1. Always plan for redundancy at the core layer, since a core failure affects the entire building or campus, unlike an access layer failure which is contained to one small area.
  2. Use link aggregation (port channels) for uplinks between layers, providing both increased bandwidth and automatic failover if one physical link fails.
  3. Keep access layer switches close to the devices they serve, minimizing cable run distances (respecting the 100-meter copper cabling limit discussed in earlier articles).
  4. Standardize VLAN numbering and naming conventions across the entire hierarchy, to simplify troubleshooting and onboarding new staff.
  5. Document the physical and logical hierarchy clearly, including which access switches connect to which distribution/core devices, and keep this documentation updated as the network grows.
  6. Consider a collapsed core design for smaller buildings, combining core and distribution functions into fewer devices when the added complexity of a fully separate three-tier model isn’t justified by the traffic volume.

Troubleshooting Hierarchical Star Networks

Problem 1: An Entire Floor Loses Connectivity

Steps:

  1. Check the uplink connection between that floor’s access switch and the distribution/core layer — a single failed uplink (if not properly redundant) can take down an entire floor.
  2. Verify power to the floor’s access switch.
  3. Check for a recent configuration change that may have affected the uplink trunk or VLAN configuration.

Problem 2: One Device Has No Connectivity, But Neighbors Are Fine

Steps:

  1. This points to an access-layer issue specific to that one port or cable — check the specific switch port status and the physical cable connection first, following the troubleshooting steps outlined in earlier articles on copper cabling.

Problem 3: Slow Performance Building-Wide During Peak Hours

Steps:

  1. Check utilization at the core and distribution layers, since this is where traffic from many access switches aggregates — a bottleneck here affects the whole building, unlike an access-layer bottleneck which affects only one area.
  2. Review whether core/distribution switches are adequately non-blocking for current traffic demand (see our dedicated article on this topic).

Problem 4: Redundant Uplink Isn’t Actually Providing Failover

Steps:

  1. Verify the link aggregation (port channel) or Spanning Tree Protocol configuration is correctly set up on both ends of the redundant links.
  2. Test failover deliberately during a maintenance window by disabling one physical link and confirming traffic seamlessly shifts to the backup path.

Redundancy Protocols That Keep Active Components Working Together

Active components in a hierarchical star network rarely work in complete isolation — especially at the core and distribution layers, redundancy protocols are essential to make multiple devices behave as a cohesive, fault-tolerant system rather than a collection of independent boxes. A few of the most important protocols worth understanding:

  • Spanning Tree Protocol (STP) and its successors (RSTP, MSTP): When redundant physical links exist between switches (for fault tolerance), simply connecting them directly would create a loop, where traffic circulates endlessly, quickly overwhelming the network (a phenomenon called a broadcast storm). STP solves this by intelligently blocking redundant paths during normal operation, keeping them ready as instant backups if the primary path fails, without ever allowing an actual loop to form.
  • Hot Standby Router Protocol (HSRP) and Virtual Router Redundancy Protocol (VRRP): These protocols allow two (or more) redundant core routers/switches to share a single “virtual” IP address that end devices use as their gateway. If the primary device fails, the backup seamlessly takes over that virtual IP address, and end devices experience no interruption, since they were never configured to point at a specific physical device in the first place — only at the shared virtual address.
  • Virtual Switching System (VSS) and Stacking: Some vendors allow multiple physical core or distribution switches to be logically combined into what appears to the rest of the network as a single, unified switch, simplifying configuration and providing seamless failover, since STP and similar loop-prevention protocols see only one logical device rather than two separate ones that need loop protection between them.
graph TD
    A[Core Switch A - Active] -->|HSRP Virtual IP: 10.0.0.1| C[End Devices use Virtual IP as Gateway]
    B[Core Switch B - Standby] -->|Takes over Virtual IP if A fails| C

Understanding these protocols helps explain why, from an end user’s perspective, a hierarchical network with properly configured redundant active components can survive the failure of an entire core switch with zero noticeable interruption — the backup device simply and silently takes over the shared responsibilities within seconds.


Two-Tier vs Three-Tier Designs: Choosing the Right Depth of Hierarchy

Not every commercial building needs a full three-tier (core/distribution/access) hierarchy. The right depth of hierarchy depends heavily on the size of the building, the number of connected devices, and anticipated growth.

DesignBest Suited ForTrade-offs
Two-Tier (Collapsed Core)Small-to-medium buildings, single or few floors, under a few hundred devicesSimpler, cheaper, less equipment to manage, but core devices handle more direct responsibility with fewer layers of fault isolation
Three-Tier (Full Hierarchy)Large buildings, campuses, multiple floors/wings with hundreds to thousands of devicesBetter fault isolation and scalability, but higher cost and more devices to configure and maintain

A collapsed core design essentially merges the core and distribution layers into a single set of devices, which directly connect to access switches, skipping the separate distribution tier entirely. This is extremely common in small-to-medium commercial buildings, where the traffic volume and device count don’t yet justify the added complexity and cost of a fully separate distribution layer.

As a building or campus grows, network designers often plan for an eventual migration path from a two-tier to a three-tier design, adding a genuine distribution layer once the number of access switches and floors grows large enough that a collapsed core would become an unmanageable bottleneck or single point of complexity.


Conclusion

The hierarchical star topology, built from core, distribution, and access layer active components, forms the backbone of virtually every modern commercial building’s network. By organizing switches, routers, and wireless controllers into logical, scalable layers, network designers achieve a system that is easier to troubleshoot, more resilient to individual failures, and able to grow smoothly as an organization’s needs expand. Understanding the role each active component plays within this hierarchy — and how they work together — is foundational knowledge for anyone designing, installing, or maintaining commercial network infrastructure.


Further Reading and References

  1. Cisco Hierarchical Network Design Guide — https://www.cisco.com/c/en/us/td/docs/solutions/Enterprise/Campus/HA_campus_DG/hacampusdg.html
  2. TIA/EIA-568 Structured Cabling Standard — https://www.tiaonline.org/
  3. IEEE 802.1D Spanning Tree Protocol Standard — https://www.ieee802.org/1/pages/802.1D.html
  4. IEEE 802.3ad Link Aggregation Standard — https://www.ieee802.org/3/
Total
0
Shares

Leave a Reply

Previous Post
Top 3 Bounded Media Types Used for Data Transmission: Twisted-Pair, Coaxial, and Fiber Optic

Top 3 Bounded Media Types Used for Data Transmission: Twisted-Pair, Coaxial, and Fiber Optic

Next Post
Blocking vs. Non-Blocking Workgroup Switches: Impact on Effective Bandwidth Performance

Blocking vs. Non-Blocking Workgroup Switches: Impact on Effective Bandwidth Performance

Related Posts