A network engineer is configuring a routed (Layer 3) EtherChannel between two switches using LACP. The engineer issued the `no switchport` command on physical interfaces GigabitEthernet0/1 and GigabitEthernet0/2 before assigning them to channel group 1 with mode `active`. However, the bundle fails to pass routed traffic. Upon executing `show etherchannel summary`, the output displays:
text
Group Port-channel Protocol Ports
------+-------------+-----------+-----------------------------------------------
1 Po1(SD) LACP Gi0/1(I) Gi0/2(I)
Which administrative action will resolve this issue and bring the Layer 3 EtherChannel into an operational state?
- Issue the `no switchport` command on the logical Port-Channel 1 interface.Answer
- BChange the channel-group mode on the physical interfaces to `desirable` to force LACP negotiation.
- CAlign the native VLAN configurations on GigabitEthernet0/1 and GigabitEthernet0/2 to eliminate trunking mismatches.
- DRemove the IP address from Port-Channel 1 and assign individual IP addresses directly to GigabitEthernet0/1 and GigabitEthernet0/2.
Answer
Issue the `no switchport` command on the logical Port-Channel 1 interface.
The `show etherchannel summary` command output displays `Po1(SD)`, where `S` signifies Layer 2 and `D` signifies Down. Because the physical member interfaces were configured with `no switchport`, they are operating as Layer 3 ports. LACP prevents ports from bundling if there is a mismatch between the physical member ports and the logical port-channel interface mode. Converting the Port-Channel 1 interface to Layer 3 using `no switchport` resolves the configuration mismatch and enables the LACP bundle to become operational (`Po1(RU)` or `Po1(SU)` depending on code version definitions).
Step-by-Step Solution
Key Concept
Layer 3 EtherChannel Configuration and Operability Flags
Estimated Time:2m 0s