A network technician is troubleshooting an IEEE 802.1Q trunk link between two switches, `SW-DIST-01` and `SW-ACCESS-02`. The trunk is designed to transport traffic for VLAN 10 (Data), VLAN 20 (Voice), and VLAN 99 (Management), with VLAN 99 designated as the native VLAN.
On `SW-DIST-01`, interface GigabitEthernet1/0/10 is configured with the following commands:
text
interface GigabitEthernet1/0/10
switchport mode trunk
switchport trunk native vlan 99
switchport trunk allowed vlan 10,20,99
On `SW-ACCESS-02`, interface GigabitEthernet0/1 is configured as follows:
text
interface GigabitEthernet0/1
switchport mode trunk
switchport trunk allowed vlan 10,20
Management traffic for VLAN 99 fails to cross the trunk link, and switch log messages alert the administrator to a native VLAN mismatch. Which of the following best explains why VLAN 99 management traffic is failing across this link?
- SW-ACCESS-02 defaults to native VLAN 1 and drops egress VLAN 99 traffic because VLAN 99 is omitted from its allowed list, while incoming untagged native frames from SW-DIST-01 are incorrectly processed on VLAN 1.Cevap
- BIEEE 802.1Q trunk interfaces automatically shut down unless all switches dynamically negotiate matching native VLAN IDs using Dynamic Trunking Protocol (DTP).
- CUntagged frames sent across an 802.1Q trunk are automatically dropped by the receiving switch unless 802.1Q tag header insertion is forcibly enabled for every configured VLAN.
- DDevices assigned to VLAN 99 on different switches cannot communicate across a trunk unless a Layer 3 router performs inter-VLAN routing between the two switch interfaces.