2.7 Network Access Troubleshooting

Key Takeaways

  • VLAN mismatch (host in wrong VLAN) is one of the most common Layer 2 connectivity issues.
  • Native VLAN mismatch on trunks causes traffic to be placed in the wrong VLAN — check with 'show interfaces trunk'.
  • Duplex/speed mismatch causes late collisions, CRC errors, and degraded performance.
  • STP convergence or misconfiguration can block ports that should be forwarding — check with 'show spanning-tree'.
  • EtherChannel formation fails if member port settings (speed, duplex, VLAN, trunk) don't match.
Last updated: March 2026

Network Access Troubleshooting

Layer 2 issues can be tricky to diagnose because they don't generate the clear error messages that Layer 3 routing problems produce. This section covers the most common Layer 2 problems and how to identify them.

VLAN Troubleshooting

Host Cannot Communicate with Other Hosts

Step 1: Verify the host's VLAN assignment

Switch# show vlan brief
Switch# show interfaces GigabitEthernet0/1 switchport

Step 2: Verify the VLAN exists on all switches in the path

Switch# show vlan brief   ! VLAN must exist on each switch

Step 3: Verify the trunk allows the VLAN

Switch# show interfaces trunk   ! Check "Vlans allowed" column

Step 4: Verify inter-VLAN routing is configured (if communicating between VLANs)

Router# show ip interface brief   ! Check SVI or sub-interface is up/up

Common VLAN Problems

ProblemSymptomFix
Port in wrong VLANHost can't reach expected hostsReassign port to correct VLAN
VLAN not created on switchPort goes to default VLAN 1Create VLAN on the switch
VLAN not allowed on trunkTraffic doesn't cross trunkAdd VLAN to trunk allowed list
SVI is downInter-VLAN routing failsno shutdown on the SVI
Missing ip routingLayer 3 switch can't routeEnable ip routing globally

Trunk Troubleshooting

SymptomPossible CauseVerification
Trunk not formingDTP mode mismatch, or non-trunking modeshow interfaces trunk
Some VLANs not crossing trunkVLAN not in allowed listshow interfaces trunk
Traffic in wrong VLANNative VLAN mismatchshow interfaces trunk → check Native vlan
Intermittent issuesNative VLAN mismatch warningshow cdp neighbors detail (reports mismatch)

EtherChannel Troubleshooting

If EtherChannel is not forming, check:

  1. Same speed on all member ports
  2. Same duplex on all member ports
  3. Same VLAN assignments (for access) or allowed VLANs (for trunk)
  4. Same trunk mode on all member ports
  5. Same native VLAN on all member ports (for trunk)
  6. Compatible channel modes (LACP active + passive or PAgP desirable + auto)
Switch# show etherchannel summary    ! Check channel status flags
Switch# show etherchannel detail     ! Detailed troubleshooting

Flags to watch for:

  • (P) — Bundled in port-channel (good)
  • (s) — Suspended (configuration mismatch)
  • (D) — Down
  • (I) — Stand-alone, not in channel

Wireless Troubleshooting

IssuePossible CauseSolution
No wireless signalAP powered off, wrong channelCheck AP power, verify channel
Slow wireless performanceCo-channel interference, too many clientsAdjust channel plan, add APs
Client can't associateWrong SSID or security mismatchVerify SSID name, check WPA2 settings
Associated but no IPDHCP issue on wireless VLANCheck DHCP scope, ip helper-address
Connected but can't reach networkVLAN mapping wrong on WLCVerify WLAN-to-VLAN mapping

On the Exam: Troubleshooting scenarios are common. You may be shown a network diagram with specific configurations and asked to identify why a host cannot communicate. Always check VLANs, trunks, and routing systematically.

Test Your Knowledge

A host in VLAN 10 on Switch A cannot communicate with a host in VLAN 10 on Switch B. The trunk between the switches is up. What should you check first?

A
B
C
D
Test Your Knowledge

The output of "show etherchannel summary" shows member ports with status "(s)" (suspended). What is the most likely cause?

A
B
C
D
Test Your Knowledge

What is the effect of a native VLAN mismatch on a trunk link?

A
B
C
D
Test Your Knowledge

A user connected to a switch port cannot get an IP address via DHCP. The DHCP server is on a different subnet. What is likely missing?

A
B
C
D