A network engineer is configuring a routed (Layer 3) EtherChannel bundle (Port-channel 12) on a Cisco Catalyst switch using Link Aggregation Control Protocol (LACP). The bundle must aggregate physical interfaces GigabitEthernet1/0/1 and GigabitEthernet1/0/2, actively negotiate LACP trunking, and host the IPv4 default gateway subnet interface with IP address 192.168.100.1/30. Place the Cisco IOS configuration command steps in the correct sequential order from first to last to complete this configuration cleanly.
- 1interface range GigabitEthernet1/0/1 - 2
- 2no switchport
- 3channel-group 12 mode active
- 4interface Port-channel 12
- 5ip address 192.168.100.1 255.255.255.252
Answer
The correct sequence of commands is: 1) interface range GigabitEthernet1/0/1 - 2, 2) no switchport, 3) channel-group 12 mode active, 4) interface Port-channel 12, 5) ip address 192.168.100.1 255.255.255.252.
To create a routed (Layer 3) EtherChannel using LACP, the physical interfaces must first be selected ('interface range GigabitEthernet1/0/1 - 2') and converted to Layer 3 routed ports ('no switchport'). Next, the LACP dynamic bundle is formed using 'channel-group 12 mode active'. Afterwards, the administrator switches to the logical bundle interface context ('interface Port-channel 12') to assign the IPv4 address ('ip address 192.168.100.1 255.255.255.252').
Step-by-Step Solution
Key Concept
Layer 3 EtherChannel LACP Configuration Sequence