An engineer is troubleshooting a BGP route propagation issue. The customer is receiving a default route from upstream provider, but the route is not being installed in the routing table. The BGP table shows the route is valid but not best. What is the most likely cause?
Trap 1: The next-hop is unreachable
That would make the route invalid, not just not best.
Trap 2: The route is filtered by an inbound route-map
If filtered, it would not appear in BGP table at all.
Trap 3: The BGP session is not established
If session down, route would not be in BGP table.
- A
The next-hop is unreachable
Why wrong: That would make the route invalid, not just not best.
- B
The route is filtered by an inbound route-map
Why wrong: If filtered, it would not appear in BGP table at all.
- C
The BGP session is not established
Why wrong: If session down, route would not be in BGP table.
- D
A static default route with lower administrative distance exists
Static route AD 1 < BGP AD 20, so BGP route is not best.