← Back to quizzesFree quiz

Hierarchical Network Modeling and Modularity

Modern enterprise networks are built using a three‑tier hierarchical model that separates responsibilities into distinct layers: Access , Distribution , and Core . This separation improves…

10 questions~5 min
Hierarchical Network Modeling and Modularity — Qwi
0 / 10
Score: 0%
1

Which layer of the hierarchical model should never perform security filtering to avoid latency?

2

In the lab, which VLAN is assigned the IP subnet 192.168.20.0/24?

3

What is the primary purpose of the Distribution layer in the three‑tier model?

4

Which ACL statement correctly blocks traffic from the Guest VLAN (30) to the Faculty VLAN (10) on D1?

5

If a failure occurs on a single Access switch, which design principle most directly reduces the Mean Time To Repair (MTTR)?

6

Which technology provides the highest advertised bandwidth according to the lab description?

7

During the "Canary Test", what is the expected impact on the overall network if the test fails?

8

Which command on a Distribution switch enables IP routing for Inter‑VLAN traffic?

9

What reliability target (in nines) is required for ToIP services in the lab?

10

Which statement best describes the role of the Core layer in the hierarchical model?

Understanding Hierarchical Network Modeling

Modern enterprise networks are built using a three‑tier hierarchical model that separates responsibilities into distinct layers: Access, Distribution, and Core. This separation improves scalability, simplifies troubleshooting, and enables clear security boundaries.

Why the Core Layer Should Not Perform Security Filtering

Among the three layers, the Core Layer is dedicated to high‑speed, low‑latency transport of traffic across the backbone. Introducing security filters such as ACLs at this point adds processing overhead and can cause noticeable latency spikes. Therefore, security filtering is best placed at the Distribution or Access layers, where traffic can be inspected without compromising the Core’s performance.

Roles of Each Layer

  • Access Layer: Connects end‑devices (workstations, printers, IP phones) to the network. It often implements port‑based security, VLAN assignment, and PoE.
  • Distribution Layer: Acts as the bridge between Access and Core. It aggregates traffic, performs route summarization, and enforces inter‑VLAN routing policies.
  • Core Layer: Provides fast, reliable transport between Distribution switches. It should remain a “clean pipe” without packet inspection.

VLAN Design and IP Subnetting

Virtual LANs (VLANs) segment a broadcast domain at Layer 2, allowing logical grouping of devices regardless of physical location. Each VLAN is typically assigned a unique IP subnet.

Lab Example: Mapping VLANs to Subnets

In the provided lab, the Student VLAN is associated with the subnet 192.168.20.0/24. This mapping is essential for:

  • Ensuring proper routing between VLANs.
  • Applying ACLs that reference source and destination subnets.
  • Facilitating troubleshooting by correlating IP addresses with their logical group.

Other VLANs in the lab include:

  • Faculty VLAN – typically 192.168.10.0/24
  • Guest VLAN – typically 192.168.30.0/24
  • Management VLAN – used for device management traffic.

Distribution Layer Functions

The Distribution layer is the primary point for route aggregation and policy enforcement. Its key responsibilities include:

  • Aggregating multiple Access‑layer VLANs into a smaller number of routed interfaces.
  • Implementing inter‑VLAN routing, often via ip routing on a Layer‑3 switch.
  • Applying ACLs that control traffic between VLANs, such as restricting Guest access to Faculty resources.
  • Providing redundancy and load‑balancing to improve network resilience.

Because the Distribution layer sits between Access and Core, it can enforce security policies without impacting the high‑speed Core backbone.

Access Control Lists (ACLs) – Practical Example

ACLs are a fundamental tool for controlling traffic flow. They consist of ordered statements that either deny or permit specific traffic.

Correct ACL Syntax for Blocking Guest to Faculty Traffic

To block traffic from the Guest VLAN (30) to the Faculty VLAN (10) on a Distribution switch (D1), the following statement is correct:

access-list 101 deny ip 192.168.30.0 0.0.0.255 192.168.10.0 0.0.0.255

Key points to remember:

  • The source is the Guest subnet 192.168.30.0/24 (wildcard 0.0.0.255).
  • The destination is the Faculty subnet 192.168.10.0/24.
  • Place deny statements before any permit statements to ensure unwanted traffic is blocked first.

Mnemonic for ACL Creation

Remember the pattern DSDDeny Source Destination. This helps you quickly construct the correct syntax.

Design Principles for High Availability

When a single Access switch fails, the network’s Mean Time To Repair (MTTR) can be minimized by applying a modular design with clear interfaces. This principle includes:

  • Using redundant links between Access and Distribution switches.
  • Standardizing switch configurations so a replacement can be swapped in without extensive re‑configuration.
  • Documenting interface roles (uplink, downlink, trunk) to speed up troubleshooting.

Other design elements—such as a redundant core backbone or high‑speed links—improve overall resilience but do not directly reduce MTTR for an Access‑layer failure.

Choosing the Right Transport Technology

In the lab description, the Fiber Optic connections provide the highest advertised bandwidth compared to ADSL, 10‑Base‑T Ethernet, or Wi‑Fi 802.11g. Fiber offers:

  • Gigabit‑plus speeds with low latency.
  • Immunity to electromagnetic interference.
  • Future‑proofing for higher‑speed upgrades.

When designing a hierarchical network, placing fiber links at the Core and Distribution layers maximizes throughput where it matters most.

Canary Testing – Controlled Change Management

A Canary Test is a staged rollout where a new configuration or device is introduced to a limited portion of the network. The goal is to observe behavior before full deployment.

Impact of a Failed Canary Test

If the test fails, the impact is typically minor and isolated to the tested module. This limited scope ensures that the rest of the network continues to operate normally, avoiding a complete outage.

Best practices for canary testing include:

  • Selecting a non‑critical VLAN or a subset of devices.
  • Monitoring key performance indicators (latency, packet loss) during the test.
  • Having a rollback plan ready to revert changes instantly.

Enabling Inter‑VLAN Routing on Distribution Switches

For VLANs to communicate, the Distribution switch must act as a Layer‑3 device. The command that enables this capability is:

ip routing

Without ip routing, the switch will forward frames only at Layer 2, preventing inter‑VLAN traffic. After enabling routing, you typically configure SVIs (Switched Virtual Interfaces) for each VLAN and apply the necessary ACLs.

Key Takeaways

  • The Core layer should remain free of security filtering to preserve low latency.
  • Distribution layer aggregates traffic, performs route summarization, and enforces ACLs.
  • Correct ACL syntax follows the deny source destination pattern.
  • Modular design with clear interfaces reduces MTTR after an Access‑layer failure.
  • Fiber optics deliver the highest bandwidth for backbone connections.
  • Canary tests limit risk by confining potential failures to a small network segment.
  • Enable ip routing on Distribution switches to allow inter‑VLAN communication.

By mastering these concepts, network engineers can design robust, scalable, and secure hierarchical networks that meet modern enterprise demands.