A network administrator attempts to add VLAN 30 to an active 802.1Q trunk line between two distribution switches that currently carries VLAN 10 and VLAN 20. The administrator enters the following command on interface GigabitEthernet1/0/1:
`SW-Dist1(config-if)# switchport trunk allowed vlan 30`
Immediately after executing this command, users on VLAN 10 and VLAN 20 report loss of connectivity across the trunk link. Which of the following best explains why this connectivity issue occurred?
- The command replaced the existing allowed VLAN list with only VLAN 30 rather than appending it to the list.Cevap
- BVLAN 30 became the new native VLAN on the interface, causing all untagged traffic to be dropped automatically.
- CVLAN 10 and VLAN 20 were converted from isolated broadcast domains into access mode ports on GigabitEthernet1/0/1.
- DThe trunk link disabled IEEE 802.1Q frame tagging and reverted to unencapsulated Ethernet frame transmission.
Cevap
The command executed overwrote the entire allowed VLAN list on the trunk interface with VLAN 30, thereby pruning VLAN 10 and VLAN 20 from traversing the link.
When executing `switchport trunk allowed vlan <vlan-list>` without using the `add` keyword, the switch replaces the entire set of allowed VLANs on the trunk with only the specified VLAN(s). As a result, VLAN 10 and VLAN 20 were pruned from GigabitEthernet1/0/1, causing cross-switch traffic for those VLANs to be dropped.
Adım Adım Çözüm
Anahtar Kavram
802.1Q Trunk Allowed VLAN List Overwrite vs. Append
Tahmini Süre:1m 30s