A network engineer notices intermittent connectivity issues between two switches connected via a trunk link. The trunk is configured with DTP in dynamic desirable mode on one side and trunk mode on the other. Which action should the engineer take to resolve the issue?
Trap 1: Set both sides to access mode.
Setting both sides to access mode would place the ports in different VLANs, breaking the trunk link and causing connectivity loss.
Trap 2: Disable DTP on both sides using switchport nonegotiate.
Disabling DTP with 'switchport nonegotiate' on both sides while one side remains in 'dynamic desirable' would prevent trunk negotiation, leading to a mismatch unless both sides are manually set to trunk or access.
Trap 3: Change one side to dynamic auto.
Changing one side to 'dynamic auto' would put it in a passive listening state, while the other side is in 'dynamic desirable' (active), which should negotiate a trunk, but the intermittent issue indicates that DTP negotiation is still causing instability, so static trunk is preferred.
- A
Configure both sides with switchport mode trunk.
Configuring both sides with 'switchport mode trunk' establishes a static trunk, eliminating DTP negotiation and ensuring stability.
- B
Set both sides to access mode.
Why wrong: Setting both sides to access mode would place the ports in different VLANs, breaking the trunk link and causing connectivity loss.
- C
Disable DTP on both sides using switchport nonegotiate.
Why wrong: Disabling DTP with 'switchport nonegotiate' on both sides while one side remains in 'dynamic desirable' would prevent trunk negotiation, leading to a mismatch unless both sides are manually set to trunk or access.
- D
Change one side to dynamic auto.
Why wrong: Changing one side to 'dynamic auto' would put it in a passive listening state, while the other side is in 'dynamic desirable' (active), which should negotiate a trunk, but the intermittent issue indicates that DTP negotiation is still causing instability, so static trunk is preferred.