Refer to the exhibit. A network administrator is troubleshooting a trunk link between SW1 and SW2. The trunk on interface GigabitEthernet0/0 on SW1 is not passing traffic, and all VLANs are isolated. The administrator issues the command 'show interfaces GigabitEthernet0/0 trunk' on SW1. What is the most likely cause of the issue?
The Encapsulation column shows "isl" while the Status is "not-trunking", which is the classic signature of an encapsulation mismatch. SW1 is sending ISL-framed traffic or negotiating with ISL, but the peer switch supports only 802.1Q, making trunk negotiation impossible. ISL and 802.1Q are fundamentally incompatible: ISL adds a 26-byte header and 4-byte trailer, whereas 802.1Q inserts a 4-byte tag into the Ethernet frame. For a trunk to form, both switches must agree on the exact same encapsulation, and since the peer cannot speak ISL, the link remains operationally "not-trunking".
Why this answer
The 'show interfaces trunk' output on SW1 would show the trunk as up but not passing traffic if the encapsulation is set to ISL while SW2 only supports 802.1Q. Cisco switches default to Dynamic Trunking Protocol (DTP) and may negotiate ISL on older hardware, but if the peer does not support ISL, the trunk fails to form correctly, isolating all VLANs. The mismatch in encapsulation prevents proper frame tagging, causing all VLAN traffic to be dropped.
Why the other options are wrong
Native VLAN mismatches can cause traffic to leak between VLANs, but they do not prevent a trunk from becoming operational. The output clearly shows the encapsulation type as ISL, not a native VLAN problem.
Candidates might assume a misconfigured mode causes the issue, but the exhibit confirms the port is in trunk mode ('on' mode).
New learners might equate 'not-trunking' with a shutdown state, but 'admin down' is a distinct status. The port is operationally unable to trunk, not manually disabled.