An edge router receives the primary route to remote destination network via external BGP (eBGP) from ISP-1 using default settings. The network administrator attempts to configure a floating static backup route toward ISP-2 using the command `ip route 10.10.0.0 255.255.0.0 192.168.1.2 15`. Which behavior will be observed on the router regarding this destination?
- The static route immediately replaces the eBGP route as the primary active route in the routing table because its Administrative Distance of 15 is lower than the default eBGP Administrative Distance of 20.Answer
- BThe static route functions correctly as an inactive backup route and enters the routing table only when the eBGP path drops.
- CThe router installs both routes into the routing table and load balances traffic equally across ISP-1 and ISP-2.
- DCisco IOS rejects the command because static route Administrative Distance values cannot be configured lower than 20.
Answer
The static route immediately replaces the eBGP route as the primary active route in the routing table because its Administrative Distance of 15 is lower than the default eBGP Administrative Distance of 20.
In Cisco IOS, lower Administrative Distance values take precedence. The default Administrative Distance for external BGP (eBGP) is 20. Because the static route was configured with an explicit Administrative Distance of 15, the router considers it more reliable than the eBGP route. As a result, the static route becomes the primary active path in the routing table rather than remaining an inactive backup.
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Precedence