A border router receives a primary IPv4 route for destination network via external BGP (eBGP), which has an administrative distance of . The network engineer must configure a backup floating static route via next-hop IPv4 address that remains inactive in the routing table unless the primary eBGP path becomes unavailable. Which command must be configured on the border router to achieve this requirement?
- ip route 198.51.100.0 255.255.255.0 203.0.113.5 25Answer
- Bip route 198.51.100.0 255.255.255.0 203.0.113.5 15
- Cip route 198.51.100.0 255.255.255.0 203.0.113.5 20
- Dip route 198.51.100.0 0.0.0.255 203.0.113.5 25
Answer
The command `ip route 198.51.100.0 255.255.255.0 203.0.113.5 25` correctly configures the backup floating static route.
To configure a floating static route as a backup to an eBGP-learned route (which has a default administrative distance of ), the static route must be assigned an administrative distance strictly greater than . Setting the distance to ensures that Cisco IOS places the static route into the routing table only when the eBGP route is withdrawn. Additionally, Cisco IOS static route configuration requires a dotted-decimal subnet mask rather than a wildcard mask.
Step-by-Step Solution
Key Concept
Floating Static Route Administrative Distance Configuration
Estimated Time:1m 30s