Courseiva
IP RoutingmediumMultiple ChoiceObjective-mapped

CCNA IP Routing Practice Question

A network engineer wants a static route to be used only when the OSPF-learned route disappears. Which configuration approach meets that goal?

⚠ Common exam trap

A frequent exam trap is selecting a static route with a default or lower administrative distance than OSPF, such as AD 1, which causes the static route to be preferred immediately, overriding the OSPF route. Another common mistake is thinking that adjusting the metric of the static route or redistributing it into OSPF will create a backup route. Metrics influence path selection within routing protocols but do not affect route preference between static and OSPF routes. Redistribution simply advertises the static route dynamically and does not provide failover control. These misunderstandings lead to incorrect configurations that do not meet the requirement of using the static route only when the OSPF route disappears.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Use a static route with administrative distance higher than 110

That is a floating static route. You configure the static route with an administrative distance higher than the OSPF route so it stays in reserve until the dynamic path is lost.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Use a static route with administrative distance 1

    Why it's wrong here

    AD 1 is the default administrative distance for a standard static route, meaning it is considered highly trustworthy—more trustworthy than any dynamic protocol, including OSPF's AD 110. If you configure a static route with AD 1, it will immediately be placed in the routing table as the preferred path, and the OSPF route will be ignored even when OSPF is fully operational. That defeats the requirement to use the static route only when OSPF fails, because the static route would become the primary, not the backup. To make it a backup, the AD must be greater than 110.

    When this WOULD be correct

    In a scenario where a question asks for the configuration of a static route that should always take precedence over any dynamic routing protocols, setting the administrative distance to 1 would be correct. For example, if the question specifies that the static route must be the primary route under all circumstances, this option would apply.

  • Use a static route with administrative distance higher than 110

    Why this is correct

    Administrative distance (AD) directly controls which route source is preferred, regardless of metric, and OSPF's default AD is 110. If you configure a static route with an AD higher than 110, for example 120, the router will install the OSPF route in the routing table as long as it exists. When the OSPF route is removed or fails, the router then installs the static route as a fallback, because it is the only remaining candidate. This creates a floating static route: active only when the primary dynamic route is unavailable.

  • Use a static route with metric 0

    Why it's wrong here

    In Cisco IOS, the metric (or cost) is a value used by dynamic routing protocols such as OSPF and EIGRP to select the best path among routes learned from the same protocol. A static route's metric is not compared against OSPF metrics; instead, the router compares administrative distance first, and only if two routes have the same AD does it consider metric. Setting metric 0 therefore does not make the static route a backup, because the OSPF route with AD 110 will always be preferred while it is present. The static route would only be used if the OSPF route disappears, but that is true regardless of the metric value.

    When this WOULD be correct

    In a scenario where the question asks for the configuration of a static route that should always be preferred over any OSPF routes, a static route with a metric of 0 would be correct, as it would ensure that the static route is always used.

  • Redistribute the static route into OSPF

    Why it's wrong here

    Redistributing a static route into OSPF advertises that route as an OSPF external route (type E1 or E2) to other routers in the OSPF domain, but it does not change the local router's own route-selection logic. The local router still compares the static route and the OSPF route based on administrative distance: the OSPF route with AD 110 beats the static route with default AD 1, so the static route is never used as long as OSPF is up. Redistribution also has a side effect of potentially causing routing loops or suboptimal paths elsewhere, and it does not create the intended backup behavior. The correct backup mechanism is a floating static route with an AD higher than that of OSPF.

    When this WOULD be correct

    In a scenario where the question asks how to ensure static routes are advertised within an OSPF domain for redundancy, redistributing the static route into OSPF would be correct. This would allow the static route to be used alongside OSPF routes, providing an alternative path when needed.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The 200-301 exam frequently reuses these exact scenarios with slightly different constraints.

Use a static route with administrative distance higher than 110Correct answer

Why this is correct

Administrative distance (AD) directly controls which route source is preferred, regardless of metric, and OSPF's default AD is 110. If you configure a static route with an AD higher than 110, for example 120, the router will install the OSPF route in the routing table as long as it exists. When the OSPF route is removed or fails, the router then installs the static route as a fallback, because it is the only remaining candidate. This creates a floating static route: active only when the primary dynamic route is unavailable.

Use a static route with administrative distance 1Wrong answer — click to see why

Why this is wrong here

Administrative distance 1 is lower than OSPF's default AD of 110, so the static route would be preferred over OSPF routes, not used as a backup.

★ When this WOULD be the correct answer

In a scenario where a question asks for the configuration of a static route that should always take precedence over any dynamic routing protocols, setting the administrative distance to 1 would be correct. For example, if the question specifies that the static route must be the primary route under all circumstances, this option would apply.

Why candidates choose this

Students may think a lower AD always means better reliability, but in this scenario, a backup route must have a higher AD to be less preferred.

Use a static route with metric 0Wrong answer — click to see why

Why this is wrong here

Static routes do not use a metric to compete with dynamic routing protocols like OSPF; metric is used within the same protocol, not between different protocols.

★ When this WOULD be the correct answer

In a scenario where the question asks for the configuration of a static route that should always be preferred over any OSPF routes, a static route with a metric of 0 would be correct, as it would ensure that the static route is always used.

Why candidates choose this

Students might confuse metric with administrative distance, thinking a metric of 0 would make the route less preferred, but metric is irrelevant for inter-protocol route selection.

Redistribute the static route into OSPFWrong answer — click to see why

Why this is wrong here

Redistributing the static route into OSPF would make it appear as an OSPF route, potentially causing routing loops or suboptimal paths, and does not create a backup that only activates when OSPF fails.

★ When this WOULD be the correct answer

In a scenario where the question asks how to ensure static routes are advertised within an OSPF domain for redundancy, redistributing the static route into OSPF would be correct. This would allow the static route to be used alongside OSPF routes, providing an alternative path when needed.

Why candidates choose this

Students may think redistribution is necessary to make the static route known to OSPF, but the goal is a backup route, not integration into OSPF.

Analysis generated from the official 200-301blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Visual reference

PC R1 R2 R3 Server hop 1 hop 2 hop 3 RIP metric = 3 hops — lowest hop count wins

Quick reference

Routing Protocol Comparison

ProtocolMetricMax HopsAlgorithmType
RIP v2Hop count15Bellman-FordDistance vector
OSPFCost (bandwidth)UnlimitedDijkstra (SPF)Link state
EIGRPComposite metricUnlimitedDUALHybrid
IS-ISCostUnlimitedDijkstraLink state
BGPPolicy / attributesUnlimitedPath vectorPath vector

RIP's 15-hop limit makes it unsuitable for large networks. OSPF and EIGRP dominate modern enterprise deployments.

About these practice questions

Courseiva writes every 200-301 question from scratch — 1,389 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This 200-301 practice question is part of Courseiva's free Cisco certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 200-301 exam.