A network administrator needs to configure a routed (Layer 3) LACP EtherChannel (Port-Channel 10) using physical member interfaces GigabitEthernet0/1 and GigabitEthernet0/2, and assign the IPv4 address 10.1.1.1/30 to the bundle. Place the CLI configuration steps in the correct operational sequence from first to last.
- 1Execute `interface range GigabitEthernet0/1 - 2` to enter interface configuration mode for the physical member links.
- 2Execute `no switchport` on the physical member interfaces to disable Layer 2 switching capabilities.
- 3Execute `channel-group 10 mode active` to initiate LACP negotiation and create the EtherChannel bundle.
- 4Execute `interface Port-channel10` to enter configuration mode for the logical channel-group interface.
- 5Execute `ip address 10.1.1.1 255.255.255.252` on the logical Port-Channel interface.
Cevap
The correct configuration sequence is: First select physical interfaces with `interface range GigabitEthernet0/1 - 2`, second disable Layer 2 operation using `no switchport`, third associate member interfaces into LACP using `channel-group 10 mode active`, fourth enter logical interface mode via `interface Port-channel10`, and fifth configure the IPv4 address using `ip address 10.1.1.1 255.255.255.252`.
The correct operational sequence begins by selecting physical interfaces using `interface range GigabitEthernet0/1 - 2`, converting them to routed interfaces with `no switchport`, and binding them to the dynamic LACP channel group via `channel-group 10 mode active`. Next, configuration mode shifts to the created virtual interface using `interface Port-channel10`, where the IP address is configured with `ip address 10.1.1.1 255.255.255.252`.
Adım Adım Çözüm
Anahtar Kavram
Layer 3 EtherChannel (LACP) CLI Configuration Sequence
Tahmini Süre:1m 30s