Hierarchical Network Modeling and Modularity
Hierarchical network design is a best‑practice approach that breaks a large campus network into logical layers. Each layer has a distinct purpose, which simplifies troubleshooting, improves…

In the lab, which VLAN is assigned the IP subnet 192.168.20.0/24?
What is the primary function of the Distribution layer in the three‑tier model?
Which command enables IP routing on a Distribution switch in the lab configuration?
When aggregating routes towards the Core, which null route is used in the lab example?
Which ACL entry blocks traffic from the Guest VLAN (30) to the Faculty VLAN (10)?
What reliability target (in nines) is required for ToIP services according to the lab objectives?
Which ISP listed is specific to Algeria?
What is the maximum speed typically advertised for fiber‑optic connections in the lab description?
Which module type is described as containing EDGE routers that connect access equipment?
During the "Canary Test", what is the expected impact if the test fails?
Which command configures a trunk port on an Access switch in the lab?
What is the purpose of port‑security maximum 1 on an Access switch?
Which layer is primarily responsible for providing high‑speed switching without any packet manipulation?
What is the MTTR reduction benefit of modular design according to the text?
Which VLAN is designated for management traffic in the IP addressing plan?
Which statement best describes the role of the Distribution layer regarding route summarization?
In the lab, which Cisco switch model is used for Core switches?
Which of the following is NOT a listed benefit of modular network design?
What is the primary purpose of VLAN definition at the Access layer?
Which command assigns the SVI IP address for VLAN 10 on Distribution switch D1?
What is the maximum allowed service interruption per year for a 99.999% reliability target?
Which layer is described as the "network backbone" in the document?
Understanding Hierarchical Network Modeling
Hierarchical network design is a best‑practice approach that breaks a large campus network into logical layers. Each layer has a distinct purpose, which simplifies troubleshooting, improves scalability, and enhances security. The most common model is the three‑tier architecture: Access, Distribution, and Core. In this course we will explore the role of each layer, key configuration commands, and how to apply access control lists (ACLs) and routing policies in a lab environment.
Why Layered Design Matters
- Modularity: Changes in one layer rarely affect the others.
- Performance: Traffic is filtered and aggregated at the appropriate points, reducing latency.
- Security: Policies can be enforced where they are most effective.
Layer‑by‑Layer Breakdown
Access Layer
The Access layer is where end‑devices such as PCs, phones, and printers connect. Its primary responsibilities include:
- Port security and 802.1X authentication.
- VLAN assignment (often via
switchport access vlan). - Basic QoS for voice and video.
Because this layer sits closest to the users, it should never perform heavy security filtering. Doing so would introduce unnecessary latency and could degrade user experience.
Distribution Layer
The Distribution layer acts as the brain of the campus. It aggregates traffic from multiple Access switches, enforces policies, and routes between VLANs. Key functions include:
- Inter‑VLAN routing – allowing devices in different VLANs to communicate.
- Policy enforcement via ACLs and QoS.
- Redundancy and load‑balancing before traffic reaches the Core.
In the lab, the Distribution switch is configured to enable IP routing with the command ip routing. This command activates the routing engine on a Cisco switch, allowing it to forward packets between VLAN interfaces.
Core Layer
The Core provides high‑speed backbone connectivity. It is optimized for fast packet forwarding and minimal latency. Typical characteristics:
- High‑throughput switching (10 Gbps or higher).
- Redundant links to Distribution switches.
- Limited or no ACL processing – the Core should focus on moving traffic quickly.
Lab‑Specific Concepts
VLAN Assignments and IP Subnets
Each VLAN in the lab is mapped to a distinct IP subnet. The Student VLAN uses the 192.168.20.0/24 network. This mapping is essential for:
- Ensuring devices receive the correct IP address via DHCP.
- Applying ACLs that reference the correct source and destination subnets.
Routing Configuration
To enable routing on the Distribution switch, the following command is entered in global configuration mode:
ip routing
Without this command, the switch would operate purely as a Layer 2 device, and inter‑VLAN traffic would be dropped.
Null Routes
When aggregating routes toward the Core, a null route is used to discard unwanted traffic. In the lab example the null route is Null0. This is a standard Cisco interface that silently drops packets, acting like a “black hole”. Using Null0 helps keep the routing table clean and prevents accidental forwarding of traffic to non‑existent destinations.
Access Control Lists (ACLs)
ACLs enforce security policies by permitting or denying traffic based on IP addresses, protocols, or ports. The lab includes an ACL that blocks traffic from the Guest VLAN (30) to the Faculty VLAN (10). 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
After defining the ACL, it must be applied to the appropriate interface in the inbound direction.
Reliability Targets for ToIP Services
Telephony over IP (ToIP) requires high availability. The lab specifies a reliability target of 99.999% (five nines). Achieving five‑nine availability means that the service can be down for no more than about 5 minutes per year, demanding robust redundancy, monitoring, and rapid fault recovery.
Regional ISP Context
When designing a network that connects to external providers, it is useful to know regional ISPs. In the lab, the ISP specific to Algeria is Algérie Télécom. Recognizing local providers helps in planning latency, peering, and compliance with national regulations.
Key Takeaways
- The Core layer should never perform security filtering; that duty belongs to the Distribution layer.
- Enable routing on Distribution switches with
ip routing. - Use
Null0as the standard null route for discarding unwanted traffic. - Correct ACL syntax is crucial – remember to deny the Guest VLAN when blocking traffic to the Faculty VLAN.
- Five‑nine reliability (99.999%) is the benchmark for ToIP services.
- Algérie Télécom is the Algerian ISP referenced in the lab.
Further Reading and Resources
- Cisco Three‑Tier Design Guide
- RFC 1918 – Private IP Addressing
- Cisco ACL Configuration Guide
- Understanding Null0 Interfaces
