Question

Difficulty: HardVLAN Configuration and 802.1Q Trunking

An enterprise network engineer is provisioning a switch interface connecting switch SW-Floor3 to the distribution switch SW-Dist1. The link carries traffic for VLAN 10 (Corporate Data), VLAN 20 (Guest Wi-Fi), and VLAN 50 (VoIP Telephony). IP phones connected to SW-Floor3 fail to register with the central call manager on VLAN 50, although workstations on VLAN 10 communicate across the link normally.

The engineer views the trunk configuration on interface GigabitEthernet1/0/48:
text
interface GigabitEthernet1/0/48
switchport trunk encapsulation dot1q
switchport mode trunk
switchport trunk native vlan 10
switchport trunk allowed vlan 10,20,30

Which of the following identifies the root cause of the VoIP communication failure?

  1. The allowed VLAN pruning list on the trunk interface omits VLAN 50, preventing traffic belonging to the voice network from traversing the link.Answer
  2. B
    Configuring VLAN 10 as the native VLAN causes all VLAN 50 tagged frames to be automatically re-tagged as VLAN 10 before transmission.
  3. C
    VLAN 10 and VLAN 50 belong to different broadcast domains and cannot both traverse an 802.1Q trunk link without a Layer 3 router on the interface.
  4. D
    The 802.1Q encapsulation command disables voice VLAN tagging, converting all voice frames into untagged traffic that gets dropped by the remote switch.

Answer

The allowed VLAN pruning list on the trunk interface omits VLAN 50, preventing traffic belonging to the voice network from traversing the link.
The configuration command 'switchport trunk allowed vlan 10,20,30' creates an explicit permit list for trunking. Because VLAN 50 is not included in this allowed list, the switch prunes VLAN 50 traffic, dropping all ingress and egress 802.1Q tagged frames associated with the voice network on this port.

Step-by-Step Solution

1
Analyze the reported symptom and requirements.
Workstations on VLAN 10 work normally across the trunk, but IP phones on VLAN 50 cannot communicate with the call manager.
This indicates a selective VLAN transmission issue over the physical trunk link GigabitEthernet1/0/48.
2
Examine the interface CLI configuration snippet.
The command 'switchport trunk allowed vlan 10,20,30' restricts traffic on GigabitEthernet1/0/48 exclusively to VLANs 10, 20, and 30.
By explicitly specifying an allowed VLAN list without including VLAN 50, any frames carrying an 802.1Q tag for VLAN 50 are dropped at the interface.
3
Determine the necessary remediation.
VLAN 50 must be appended to the allowed VLAN list on the trunk interface.
Adding VLAN 50 enables 802.1Q tagged frames for the voice network to traverse the trunk link between switches.

Key Concept

802.1Q Trunk Allowed VLAN Filtering
Rate this question