Question

Difficulty: HardFloating Static Routes

An engineer configures a static backup route on router R1 for remote destination subnet 172.22.50.0/24172.22.50.0/24. The primary path to this subnet is learned dynamically via OSPFv2. During baseline verification, the engineer discovers that traffic destined for 172.22.50.0/24172.22.50.0/24 routes over the backup WAN circuit even though the primary OSPF link is active and in the FULL state. Which configuration issue on router R1 explains why the backup route is active in the routing table?

  1. The static route was configured without specifying a custom administrative distance, causing it to use the default administrative distance of 1, which beats the OSPF administrative distance of 110.Answer
  2. B
    The static route was configured with an administrative distance of 120, which is higher than OSPF and forces the router to install both routes simultaneously.
  3. C
    The static route was configured with an administrative distance of 110, forcing equal-cost load balancing across both the OSPF path and the static backup path.
  4. D
    The static route was configured with an administrative distance of 95, which correctly floats behind OSPF routes but overrides them when link latency increases.

Answer

The static route was configured without specifying a custom administrative distance, causing it to use the default administrative distance of 1, which beats the OSPF administrative distance of 110.
In Cisco IOS, static routes configured without an explicit administrative distance inherit the default value of 1. Because routers populate the IP routing table by choosing the path with the lowest administrative distance when multiple sources report the same prefix, a static route with AD 1 will take precedence over an OSPF route with AD 110. To act as a floating static route, the static route's administrative distance must be manually set higher than the primary routing protocol's AD (for example, setting AD to 115 or 120).

Step-by-Step Solution

1
Identify the administrative distance (AD) of the primary dynamic routing protocol.
OSPFv2 has a default administrative distance of 110.
Administrative distance measures the trustworthiness of a routing source. Lower values are preferred.
2
Analyze default static route behavior when no administrative distance parameter is specified.
Cisco IOS assigns a default administrative distance of 1 to static routes.
Because 1 is lower than 110, the router chooses the static route as more believable than the OSPF route.
3
Determine the requirement for a floating static route.
To float behind OSPF, the static route must be configured with an administrative distance strictly greater than 110 (e.g., 120).
Omitting the AD parameter causes the static route to become the active primary path instead of a floating backup.

Key Concept

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