Quiz Entry - updated: 2026.07.05
What happens when a VLAN is deleted from a switch, and how do you detect this issue?
When a VLAN (Virtual Local Area Network) is deleted, all ports assigned to that VLAN become inactive — they remain associated with the deleted VLAN but cannot pass traffic until the VLAN is recreated or ports are reassigned.
The problem:
- Ports don't automatically move to another VLAN when their VLAN is deleted
- They stay in a limbo state — assigned to a VLAN that no longer exists
- The output of
show interface switchportwill showAccess Mode VLAN: 10 (Inactive) - The word "Inactive" is your key indicator
How to detect:
S1# show interface fa0/6 switchport
Look for the line: Access Mode VLAN: 10 (Inactive) — the "Inactive" label means VLAN 10 doesn't exist.
How to fix:
- Option A: Recreate the missing VLAN (
vlan 10) — this automatically reactivates all ports - Option B: Reassign the ports to an existing VLAN (
switchport access vlan 20)
Tip: This is a very common issue in labs — if connectivity suddenly breaks after you've been cleaning up VLANs, check for inactive port assignments first.
Go deeper:
Troubleshoot Inter-VLAN Routing (Cisco Press) — how a deleted VLAN makes member ports inactive and how to detect and recreate it.