A network administrator is migrating a pair of trunk links connecting two distribution switches to a routed Layer 3 EtherChannel using IEEE 802.3ad LACP. Interfaces GigabitEthernet1/0/1 and GigabitEthernet1/0/2 need to be bundled into Port-channel 5 with IPv4 address assigned to the logical interface. In what operational sequence must these CLI configuration steps be executed on the switch to successfully create this Layer 3 EtherChannel?
- 1Select physical member interfaces GigabitEthernet1/0/1 and GigabitEthernet1/0/2 using interface range configuration mode.
- 2Disable Layer 2 switchport functionality on the physical member interfaces using the `no switchport` command.
- 3Assign physical member interfaces to the EtherChannel bundle using `channel-group 5 mode active`.
- 4Enter interface configuration mode for the newly created logical interface using `interface Port-channel 5`.
- 5Assign the IPv4 address to the logical bundle using `ip address 10.0.5.1 255.255.255.252`.
Answer
The correct operational sequence begins by selecting physical member interfaces via interface range mode, converting them to Layer 3 routed ports using `no switchport`, binding them to LACP bundle 5 with `channel-group 5 mode active`, entering `interface Port-channel 5` configuration mode, and finally assigning IPv4 address directly to the logical port-channel.
To build an operational Layer 3 LACP EtherChannel, physical member links must first be selected and converted into routed interfaces (`no switchport`). Adding these converted interfaces to a channel group with `mode active` automatically creates a Layer 3 logical port-channel and starts LACP negotiation. Finally, configuration transitions to `interface Port-channel 5`, where the IP address is applied to the logical bundle.
Step-by-Step Solution
Key Concept
Layer 3 EtherChannel LACP Configuration Sequence