A network administrator needs to convert two physical switch interfaces (GigabitEthernet0/1 and GigabitEthernet0/2) on a Cisco Catalyst switch into a routed (Layer 3) EtherChannel bundle using dynamic LACP active mode. In what sequential order should the Cisco IOS configuration commands be executed to successfully establish the routed port-channel interface and configure its IP addressing?
- 1interface range GigabitEthernet0/1 - 2
- 2no switchport
- 3channel-group 10 mode active
- 4interface Port-channel 10
- 5ip address 10.10.10.1 255.255.255.252
Answer
The correct CLI configuration sequence is: enter physical interface range mode ('interface range GigabitEthernet0/1 - 2'), convert physical links to routed mode ('no switchport'), assign interfaces to dynamic LACP group ('channel-group 10 mode active'), enter logical port-channel mode ('interface Port-channel 10'), and assign the IP address ('ip address 10.10.10.1 255.255.255.252').
To build a routed (Layer 3) EtherChannel using LACP, an engineer must first enter physical interface configuration mode ('interface range GigabitEthernet0/1 - 2'), disable Layer 2 processing on those physical member links using 'no switchport', and bind them into an active LACP bundle with 'channel-group 10 mode active'. Once the bundle is formed, the engineer enters the logical interface mode ('interface Port-channel 10') and applies the IPv4 network parameters using 'ip address 10.10.10.1 255.255.255.252'.
Step-by-Step Solution
Key Concept
Layer 3 LACP EtherChannel CLI Configuration Sequence