Question

Difficulty: MediumFloating Static Routes

A network administrator intends to deploy a floating static route on router R1 as a backup path for the internal network 172.16.50.0/24172.16.50.0/24. The primary path to this destination is currently learned through internal EIGRP (default Administrative Distance of 9090). During initial testing, the administrator notices that traffic destined for 172.16.50.0172.16.50.0 is immediately taking the static backup path across interface GigabitEthernet0/2, even though the primary EIGRP neighbor relationship remains active and healthy. Which two issues could cause the static route to be preferred over the active EIGRP route? (Select TWO.)

  1. The administrator configured the floating static route with an Administrative Distance of 8080.Answer
  2. The static route was configured using a destination prefix of 172.16.50.0/25172.16.50.0/25 instead of 172.16.50.0/24172.16.50.0/24.Answer
  3. C
    The administrator configured the floating static route with an Administrative Distance of 130130.
  4. D
    The EIGRP composite metric for the primary path was higher than the default metric assigned to the static route.

Answer

The static route is preferred over the primary EIGRP route if the static route was configured with an Administrative Distance of 80 (which is lower than EIGRP's default Administrative Distance of 90) or if the static route was configured with a more specific subnet mask of /25 (which takes precedence due to the Longest Prefix Match rule).
A floating static route functions as a backup path only when its Administrative Distance (AD) is strictly higher than that of the primary routing protocol (internal EIGRP default AD = 90). Configuring an AD of 80 causes the static route to preempt EIGRP. Additionally, routers prioritize routes based on Longest Prefix Match before AD; configuring a /25 route creates a more specific entry than the /24 EIGRP route, forcing traffic onto the static path.

Step-by-Step Solution

1
Evaluate the role of Administrative Distance (AD) in route selection.
Cisco IOS routing tables prioritize routes with lower AD values. Internal EIGRP has a default AD of 90. If a static route is configured with AD 80, it overrides the EIGRP route.
Floating static routes must have an AD higher than the primary routing protocol to stay in standby mode.
2
Evaluate the forwarding decision order between Longest Prefix Match and AD.
Routers first match packets using the longest (most specific) network prefix mask. A /25 prefix is more specific than a /24 prefix.
If the destination mask is /25, the router selects that route prior to comparing AD against the /24 EIGRP route.

Key Concept

Floating Static Route Administration and Prefix Matching
Estimated Time:1m 30s
Rate this question