A network engineer is troubleshooting a BGP peering issue between two directly connected routers, R1 and R2. R1 is configured with 'neighbor 10.1.1.2 remote-as 65002' and 'neighbor 10.1.1.2 update-source Loopback0', while R2 uses 'neighbor 10.1.1.1 remote-as 65001' and 'neighbor 10.1.1.1 update-source Loopback0'. The loopback interfaces are not advertised into any IGP, and there is no static route for the loopback addresses. The BGP session remains in Idle state. What is the most likely cause?
Trap 1: The BGP session is stuck in Idle because the remote-as values are…
Incorrect because the remote-as values match the configured AS numbers; this is not the issue.
Trap 2: The BGP session is stuck in Idle because the update-source command…
Incorrect because update-source can be used on any interface, including loopbacks, but requires reachability.
Trap 3: The BGP session is stuck in Idle because the neighbor statements…
Incorrect because BGP can peer using loopback addresses, but the loopbacks must be reachable.
- A
The BGP session is stuck in Idle because the neighbor statements reference loopback interfaces that are not reachable.
Correct because BGP uses the update-source address for peering; without reachability, TCP cannot establish.
- B
The BGP session is stuck in Idle because the remote-as values are mismatched.
Why wrong: Incorrect because the remote-as values match the configured AS numbers; this is not the issue.
- C
The BGP session is stuck in Idle because the update-source command is not allowed on directly connected interfaces.
Why wrong: Incorrect because update-source can be used on any interface, including loopbacks, but requires reachability.
- D
The BGP session is stuck in Idle because the neighbor statements must use the directly connected interface IP addresses.
Why wrong: Incorrect because BGP can peer using loopback addresses, but the loopbacks must be reachable.