A network administrator is troubleshooting an inter-switch link failure between Switch-1 and Switch-2. Switch-1 is configured for a Layer 3 EtherChannel, but the bundle fails to form, and Switch-2 is unable to route traffic across the link.
On Switch-1, the relevant configuration is:
text
interface Port-channel 5
ip address 10.10.50.1 255.255.255.252
!
interface range GigabitEthernet0/1 - 2
no switchport
channel-group 5 mode active
On Switch-2, the administrator issues the `show etherchannel 5 summary` command, which displays the following output:
text Flags: D - down P - bundled in port-channel I - stand-alone s - suspended H - Hot-standby s - Layer2 U - in use R - Layer3 S - Layer2 F - failed to allocate aggregator Group Port-channel Protocol Ports ------+------------+----------+----------------------------------------------- 5 Po5(SD) LACP Gi0/1(I) Gi0/2(I)
Additionally, inspecting `show running-config interface GigabitEthernet0/1` on Switch-2 reveals:
text
interface GigabitEthernet0/1
channel-group 5 mode passive
Which condition is the primary root cause of Switch-2 placing GigabitEthernet0/1 and GigabitEthernet0/2 into stand-alone `(I)` state and Port-channel 5 into Switch-port Down `(SD)` state?
- Switch-2 member interfaces are operating as default Layer 2 ports because `no switchport` was omitted on the physical member interfaces prior to or after adding them to the port-channel.Cevap
- BLACP mode dynamic negotiation failed because Switch-1 is configured in `active` mode while Switch-2 is configured in `passive` mode.
- CThe native VLAN configured on Switch-1 physical member interfaces does not match the default native VLAN configuration on Switch-2.
- DThe IP address assigned to Port-channel 5 on Switch-1 was not replicated onto the physical member interfaces GigabitEthernet0/1 and GigabitEthernet0/2.