Router Edge-1 is connected to a primary service provider using external BGP (eBGP, Administrative Distance 20) and a secondary service provider using an IPv4 static route to reach destination network . The network engineer intends for the static route to serve strictly as a floating backup path that only activates if the primary eBGP route fails. During a routing table audit, the engineer discovers that the static route is active in the routing table even while the primary eBGP link is fully operational.
The current static route configuration on Edge-1 is:
`ip route 192.168.100.0 255.255.255.0 10.0.12.2 15`
Which configuration change on router Edge-1 will ensure that the static route functions correctly as a backup path?
- Reconfigure the static route as `ip route 192.168.100.0 255.255.255.0 10.0.12.2 25` so its administrative distance exceeds that of eBGP.Cevap
- BReconfigure the static route as `ip route 192.168.100.0 255.255.255.0 10.0.12.2 10` to lower its administrative distance further.
- CRemove the distance argument so the command reads `ip route 192.168.100.0 255.255.255.0 10.0.12.2` to enable automatic floating behavior.
- DReconfigure the route using a wildcard mask as `ip route 192.168.100.0 0.0.0.255 10.0.12.2 15` while retaining distance 15.
Cevap
Reconfigure the static route as `ip route 192.168.100.0 255.255.255.0 10.0.12.2 25` so its administrative distance exceeds that of eBGP.
A floating static route serves as a backup path and must have an Administrative Distance (AD) configured higher than that of the primary route source. Since eBGP routes have a default AD of 20, setting the static route's AD to 25 ensures it will only be installed into the routing table if the primary eBGP route fails.
Adım Adım Çözüm
Anahtar Kavram
Floating Static Route Administrative Distance Calibration
Tahmini Süre:2m 0s