You are connected to Multilayer Switch SW1. Configure LACP EtherChannel between SW1 and SW2 using ports GigabitEthernet0/1 and GigabitEthernet0/2. Ensure the channel is formed and active. The current configuration has mismatched VLAN assignments and speed/duplex settings preventing the channel from coming up. Verify the channel state using 'show etherchannel summary'.
Hints
- •Check that both physical ports have identical speed and duplex settings.
- •Ensure the allowed VLAN list on each member port matches the Port-channel interface.
- •Use 'show etherchannel summary' to see if ports are in a suspended (D) or bundled (P) state.
! SW1 interface GigabitEthernet0/1 switchport trunk allowed vlan 10,20,30 exit interface GigabitEthernet0/2 speed 1000 duplex full switchport trunk allowed vlan 10,20,30 exit
Why this answer
The EtherChannel is down because the two member ports on SW1 have inconsistent configurations. GigabitEthernet0/1 is set to speed 1000 and duplex full with allowed VLANs 10,20, while GigabitEthernet0/2 is set to speed 100 and duplex half with allowed VLAN 30. LACP requires all member ports to have identical speed, duplex, and VLAN allowed lists.
To fix, on SW1 configure both Gi0/1 and Gi0/2 with the same speed (1000), duplex (full), and trunk allowed VLANs (10,20,30). The Port-channel interface already has the correct allowed VLANs. After correction, 'show etherchannel summary' should show both ports as bundled (P).
Exam trap
The exam trap is that candidates often focus only on speed/duplex mismatches and forget that VLAN allowed lists must also match. Additionally, they may assume that the Port-channel interface inherits settings from member ports, but in fact, the member ports must match the Port-channel configuration.
Why the other options are wrong
The specific factual error is that LACP requires all member ports to have identical configurations, and this option does not align with the existing Port-channel configuration.
The specific factual error is that the VLAN allowed list must match across all member ports and the Port-channel interface; omitting VLAN 30 will cause inconsistency.
The specific factual error is that LACP requires consistent switchport mode (access or trunk) across all member ports and the Port-channel interface.