Hierarchical Network Design and Modularity
Hierarchical network design is a proven methodology that divides a campus or enterprise network into three logical layers: Access , Distribution , and Core . Each layer has a distinct…

In the described design, which device type is used for the Core layer?
What is the main purpose of the 'Golden Rule' for the Core layer?
Which VLAN is assigned the IP subnet 192.168.20.0/24?
When configuring Switch S1, which command limits the number of MAC addresses per port to one?
Which ACL entry correctly blocks traffic from Guest VLAN (30) to Faculty VLAN (10) on Distribution switch D1?
What is the expected maximum annual downtime for a service targeting 99.999% reliability?
Which statement best describes the purpose of modularity in network design?
In the IP addressing plan, which VLAN uses a private 10.0.0.0/24 subnet?
Which technology provides the highest advertised maximum speed according to the text?
During the 'Canary Test', what is the primary benefit of testing a new router on a single module?
Which command enables IP routing on Distribution switch D1?
What is the main reason for placing ACLs on the Distribution layer rather than the Core?
Which of the following best explains why the Access layer defines VLANs?
If a distribution switch aggregates routes toward the Core, which term describes this function?
Which ISP type listed in the text is described as 'associative'?
Which statement correctly describes the bandwidth allocation role of the Access layer?
During the lab, which command assigns VLAN 10 to interfaces fa0/1‑10 on Switch S1?
Which layer is described as the 'network backbone' with a priority on speed?
What is the main advantage of using a hierarchical design for enterprise networks?
Which of the following best explains why the Core layer should not perform packet manipulation?
If a failure occurs in a module classified as 'AB', which design principle helps to quickly locate the problem?
Understanding Hierarchical Network Design
Hierarchical network design is a proven methodology that divides a campus or enterprise network into three logical layers: Access, Distribution, and Core. Each layer has a distinct purpose, a set of design guidelines, and recommended device types. Mastering this model helps network engineers create scalable, resilient, and easy‑to‑manage infrastructures.
Why a Hierarchical Model?
By separating functions, the model reduces broadcast domains, simplifies troubleshooting, and enables modularity—the practice of isolating failures to individual modules. This isolation directly lowers the Mean Time To Repair (MTTR), which is a key metric for high‑availability services such as those targeting five‑nines (99.999%) reliability.
Core Layer: The Backbone of the Network
The Core layer aggregates traffic from all Distribution switches and provides high‑speed, low‑latency forwarding. It is often referred to as the "heart" of the network because it must both switch and route traffic efficiently.
- Device choice: Multilayer switches, such as the Cisco 3650, combine Layer 2 switching with Layer 3 routing capabilities, making them ideal for the Core.
- Golden Rule: Avoid any security filtering (ACLs, port‑security, etc.) on the Core to keep latency to a minimum.
Remember the mnemonic: "Core = C for Cisco and 3650 multilayer". Visualize the Core as a heart that both pumps (switches) and directs (routes) traffic.
Distribution Layer: Policy Enforcement and Inter‑VLAN Routing
The Distribution layer sits between Access and Core. Its primary responsibilities include:
- Implementing inter‑VLAN routing (the answer to the quiz question about which layer handles this).
- Applying access control lists (ACLs) and quality‑of‑service (QoS) policies.
- Aggregating multiple Access switches.
For example, an ACL that blocks traffic from the Guest VLAN (30) to the Faculty VLAN (10) would be written as:
access-list 101 deny ip 192.168.30.0 0.0.0.255 192.168.10.0 0.0.0.255
access-list 101 permit ip any any
Notice the source‑first, destination‑second pattern—"S‑D‑Block"—which helps you remember the correct order.
Access Layer: Edge Connectivity
Access switches connect end‑devices (PCs, printers, IP phones) to the network. Security is most stringent here, often using port‑security to limit the number of MAC addresses per port.
To restrict a port to a single MAC address, the command is:
switchport port-security maximum 1
The keyword maximum acts as a ceiling—think of it as the maximum number of guests allowed through a door.
Key Concepts Tested in the Quiz
1. Inter‑VLAN Routing
Only the Distribution layer performs inter‑VLAN routing. This is why the correct answer to the first quiz question is Distribution Layer. The Core focuses on high‑speed transport, while the Access layer remains Layer 2‑only.
2. Core Device Selection
The quiz confirms that Cisco 3650 Multilayer Switches are the appropriate Core devices. Their ability to handle both switching and routing makes them perfect for the Core’s “golden rule” of minimal latency.
3. The Core Layer’s Golden Rule
To achieve five‑nines reliability, the Core must avoid any security filtering that could introduce processing delays. The correct answer is "Avoid any security filtering to reduce latency".
4. VLAN Subnet Assignment
In the provided design, the Student VLAN uses the subnet 192.168.20.0/24. Knowing which VLAN maps to which subnet is essential for accurate ACL creation and troubleshooting.
5. Port‑Security Command
The correct syntax to limit MAC addresses per port is switchport port-security maximum 1. This command is part of the broader strategy to enforce strict access control at the edge.
6. ACL Construction for VLAN Isolation
When writing an ACL to block Guest (30) → Faculty (10) traffic, the correct entry is:
access-list 101 deny ip 192.168.30.0 0.0.0.255 192.168.10.0 0.0.0.255
Follow this with a permissive rule for all other traffic.
7. Reliability Targets and Downtime
Targeting 99.999% availability translates to a maximum annual downtime of 5 minutes. This figure is derived from the "five‑nines" calculation: 0.001% of a year ≈ 5.26 minutes.
8. Modularity Benefits
Modularity reduces MTTR by isolating failures to individual modules. The quiz answer highlights that modular design reduces MTTR, not that it increases bandwidth or eliminates routing protocols.
Practical Tips for Designing a Hierarchical Network
- Start with a clear logical diagram. Identify the number of VLANs, their subnets, and the required inter‑VLAN traffic flows.
- Choose devices that match layer responsibilities. Use multilayer switches for Distribution and Core, and Layer 2 switches for Access.
- Apply the "Golden Rule" to the Core. Keep it free of ACLs, QoS, or port‑security unless absolutely necessary.
- Implement port‑security on Access switches. Limit MAC addresses, enable sticky MAC, and shut down ports on violation.
- Use ACLs on Distribution switches. Block unwanted traffic between VLANs while permitting legitimate flows.
- Design for modularity. Separate functions into physical or logical modules so that a failure impacts only a small portion of the network.
- Calculate reliability metrics. Convert service‑level agreements (SLAs) like 99.999% into allowable downtime to guide redundancy planning.
Conclusion
Hierarchical network design, when combined with modularity, provides a robust framework for building enterprise‑grade infrastructures. By assigning the right responsibilities to each layer, selecting appropriate devices, and applying security policies where they belong, engineers can achieve high performance, low latency, and the coveted five‑nines reliability.
Use the mnemonic devices and visual analogies presented above to retain key concepts—"Core = C for Cisco 3650", "MAXimum = maximum MACs", and "S‑D‑Block" for ACL ordering. With these tools, you’ll be prepared not only for quizzes but also for real‑world network deployments.
