Question

Difficulty: MediumIPv4 Static Routing

A network engineer observes that traffic from a branch office router toward destination network 172.22.0.0/16172.22.0.0/16 is taking a low-speed backup WAN link instead of the primary OSPF path. Reviewing the running configuration reveals the following static route entry configured for the backup link:

`ip route 172.22.0.0 255.255.0.0 10.0.99.2 105`

Which statement correctly explains why the backup static route is overriding the primary OSPF path?

  1. The configured administrative distance of 105 is lower than the default administrative distance of OSPF (110), causing the router to prefer the static route.Answer
  2. B
    The configured administrative distance of 105 is higher than the default administrative distance of OSPF (90), causing both paths to perform equal-cost load balancing.
  3. C
    The router selects the backup static route because static routes always take precedence over dynamic protocols regardless of administrative distance.
  4. D
    The backup static route is preferred because static routes with explicit next-hop IP addresses bypass administrative distance evaluation during prefix matching.

Answer

The configured administrative distance of 105 is lower than the default administrative distance of OSPF (110), causing the router to prefer the static route.
Administrative distance measures route source believability on Cisco routers, where lower values are preferred. OSPF routes have a default administrative distance of 110. Because the static route was configured with an administrative distance of 105, which is lower than 110, the router installs the static route into the routing table instead of the OSPF route.

Step-by-Step Solution

1
Identify the destination prefix and protocol Administrative Distance (AD) values
The target prefix is 172.22.0.0/16. Standard OSPF routes have a default AD of 110.
Administrative Distance ranks the trustworthiness of routing information sources.
2
Analyze the configured static route command syntax
In `ip route 172.22.0.0 255.255.0.0 10.0.99.2 105`, the trailing value 105 sets the custom Administrative Distance for this static route.
By default, static routes have an AD of 1 unless a custom value is specified at the end of the command.
3
Compare the AD of the static route against the primary protocol
Since 105<110105 < 110, the router considers the static route more trustworthy than OSPF and places it into the routing table.
Lower administrative distance values win when comparing identical destination prefixes.

Key Concept

Floating Static Route Administrative Distance
Estimated Time:1m 0s
Rate this question