Two Cisco Catalyst switches, SwitchA and SwitchB, are connected via their GigabitEthernet0/1 interfaces. SwitchA is configured with the commands `switchport mode dynamic desirable` and `switchport trunk native vlan 20`. SwitchB is configured with `switchport mode dynamic auto` and default interface settings (`switchport trunk native vlan 1`). Based on this operational configuration, which statement correctly describes the trunking state and frame handling across this link?
- The link successfully negotiates an 802.1Q trunk, but untagged frames sent from SwitchA's native VLAN 20 will be processed in VLAN 1 on SwitchB, causing a cross-VLAN traffic leak and triggering CDP error logs.Answer
- BThe link fails to negotiate an 802.1Q trunk because both operational ends must have matching native VLAN configurations before Dynamic Trunking Protocol (DTP) can establish a trunking operational state.
- CThe trunk link forms successfully, but SwitchA automatically tags frames from VLAN 20 with an 802.1Q header containing VLAN ID 1 to force alignment with SwitchB's native VLAN setting.
- DThe link forms a trunk, but Cisco Discovery Protocol (CDP) immediately forces both GigabitEthernet0/1 interfaces into the err-disabled state upon detecting the native VLAN TLV mismatch.
Answer
The link successfully negotiates an 802.1Q trunk, but untagged frames sent from SwitchA's native VLAN 20 will be processed in VLAN 1 on SwitchB, causing a cross-VLAN traffic leak and triggering CDP error logs.
The combination of dynamic desirable on one side and dynamic auto on the other successfully forms an 802.1Q trunk via Dynamic Trunking Protocol. Because native VLAN traffic is sent untagged by default under 802.1Q, frames originating in VLAN 20 on the first switch are received untagged on the second switch and mapped to its native VLAN 1. This creates a cross-VLAN leak and causes Cisco Discovery Protocol to log warning messages regarding the native VLAN mismatch.
Step-by-Step Solution
Key Concept
802.1Q Native VLAN Tagging Mechanics and DTP Negotiation
Estimated Time:2m 0s