Labs · · 6 min read

Lab nf-11 - Troubleshooting Layer 1 / 2 / 3 Symptoms

Lab nf-11 - Troubleshooting Layer 1 / 2 / 3 Symptoms - PingLabz Labs article title card

When the network breaks, the engineer who fixes it first is the one with a method. Trial-and-error works on the third try. A systematic approach to localizing the fault works on the first. This lab teaches you to climb the OSI stack methodically: confirm Layer 1 (physical), confirm Layer 2 (line protocol and MAC), confirm Layer 3 (routing and ARP), and only then look at Layer 4+ symptoms. You will use the base topology with an induced fault (an interface deliberately shut on R2) and walk through diagnosing it from R1's perspective.

What you will learn

  • The diagnostic order: end-to-end ping fails, then climb the OSI stack from L1 up
  • The four show commands that reveal each layer's state: show interfaces (L1+L2), show ip interface brief (L1+L2+L3 in one line), show ip arp (L2-L3 binding), show ip route (L3 forwarding decision)
  • How to distinguish "physical down" from "line protocol down" from "routing wrong"
  • The "next-hop reachability" test that splits the fault between local and remote
  • When and how to use ping versus traceroute

What this lab does NOT cover

  • Debug commands. Useful but verbose. Out of scope.
  • Packet capture analysis with EPC or Wireshark. Lab nf-12 touches on this.
  • Application-layer troubleshooting. We stop at Layer 3.

The scenario

A user reports: "I cannot reach 10.255.0.3 from my router. Yesterday it worked." You are sitting at R1's console. You have the base topology configured as in nf-07 (static routes between R1, R2, and R3). Someone has shut Ethernet0/1 on R2 (which is the link to R3) - but you do not know that yet. Walk through finding it.

Read next

Terminal card showing a repeating CDP native VLAN mismatch log naming Ethernet0/0 native VLAN 1 against SW2 Ethernet0/0 native VLAN 99
VLANs ·

Native VLAN Mismatch: Read the CDP Log, Fix the Trunk

%CDP-4-NATIVE_VLAN_MISMATCH hands you both interfaces and both native VLANs in one line. The real damage is underneath it: untagged frames get re-homed at the trunk boundary and two VLANs quietly become one. Captured live on IOS XE 17.18.2 in CML.