CCNA IP Routing Practice Question
A router learns 203.0.113.0/24 through OSPF and 203.0.113.0/25 through a static route. Which route is used for traffic destined to 203.0.113.10?
⚠ Common exam trap
Remember that the most specific route (longest prefix) is always preferred, regardless of the routing protocol.
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
✓
The static /25 route
Routers prefer the most specific matching route first. The /25 route is more specific than the /24 and includes 203.0.113.10.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The OSPF /24 route
Why it's wrong here
The OSPF /24 route is not used because it is less specific than the static /25. When a destination IP matches both prefixes, the router always prefers the longer prefix, regardless of OSPF's preference or metric. The administrative distance of OSPF (110) would only be considered if both routes had the same prefix length, but here the /25 is more specific, so the /24 route is ignored for addresses inside the /25. The /24 route remains active only for other addresses in its range not covered by the /25.
When this WOULD be correct
If the question stated that the OSPF /24 route had a higher administrative distance than the static route, or if the static route was removed from the routing table, then the OSPF /24 route would be the correct choice for traffic to 203.0.113.10.
- ✓
The static /25 route
Why this is correct
The static /25 route is selected because forwarding decisions use longest-prefix match, not administrative distance. Even though OSPF has a higher administrative distance (110) compared to static's 1, that comparison applies only when two routes have identical prefix lengths. Since 203.0.113.0/25 is more specific than the /24 and also matches the destination address, the router installs and uses this route for all traffic within that /25 range. This is why the static /25 correctly wins.
- ✗
Both routes equally
Why it's wrong here
Equal-cost load balancing cannot occur between a /24 and a /25 because they have different prefix lengths, which means they are not considered equal-cost paths to the same destination. For load balancing, routes must share the same prefix length and the same metric, and the destination must be identical. Here, the /25 is more specific, so the router uses it exclusively for matches within that range, rather than splitting traffic between the two routes. Thus, 'both routes equally' is inaccurate.
When this WOULD be correct
In a different scenario where both routes had the same administrative distance, such as when comparing two static routes, a question might ask which route would be used if both were equally preferred. In that case, both routes could be considered equally valid for traffic destined to the same IP.
- ✗
Neither route because the prefixes overlap
Why it's wrong here
Overlapping prefixes are not an error; routers are designed to handle them using the longest-prefix match algorithm. The presence of both a /24 and a /25 in the routing table does not cause a conflict or make both routes unusable. Instead, each route is evaluated based on prefix length, and the most specific match determines the forwarding path. Therefore, it is incorrect to assume that overlap forces the router to reject or ignore both routes.
When this WOULD be correct
In a scenario where a question specifies that both routes are equally preferred due to equal administrative distances or if the router is configured to treat overlapping routes differently, this option could be correct. For example, if the question states that the router uses a round-robin method for load balancing between equal-cost paths, then both routes would be used.
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.
✓The static /25 routeCorrect answer▾
Why this is correct
The static /25 route is selected because forwarding decisions use longest-prefix match, not administrative distance. Even though OSPF has a higher administrative distance (110) compared to static's 1, that comparison applies only when two routes have identical prefix lengths. Since 203.0.113.0/25 is more specific than the /24 and also matches the destination address, the router installs and uses this route for all traffic within that /25 range. This is why the static /25 correctly wins.
✗The OSPF /24 routeWrong answer — click to see why▾
Why this is wrong here
The OSPF /24 route is less specific than the static /25 route. The longest prefix match rule dictates that the /25 route is preferred for destination 203.0.113.10, which falls within the /25 range.
★ When this WOULD be the correct answer
If the question stated that the OSPF /24 route had a higher administrative distance than the static route, or if the static route was removed from the routing table, then the OSPF /24 route would be the correct choice for traffic to 203.0.113.10.
Why candidates choose this
Students may think that OSPF, as a dynamic routing protocol, is preferred over static routes, or they may overlook the longest prefix match rule and assume administrative distance decides the winner.
✗Both routes equallyWrong answer — click to see why▾
Why this is wrong here
Equal-cost load balancing only applies when multiple routes have the same prefix length and metric. Here, the prefix lengths differ (/24 vs /25), so the longest prefix match selects the /25 route exclusively.
★ When this WOULD be the correct answer
In a different scenario where both routes had the same administrative distance, such as when comparing two static routes, a question might ask which route would be used if both were equally preferred. In that case, both routes could be considered equally valid for traffic destined to the same IP.
Why candidates choose this
Students might confuse the concept of equal-cost multipath (ECMP) with overlapping routes of different lengths, assuming both routes could be used simultaneously.
✗Neither route because the prefixes overlapWrong answer — click to see why▾
Why this is wrong here
Overlapping routes are common in routing tables and do not cause a problem. The router always selects the most specific match (longest prefix) for forwarding, so both routes can coexist.
★ When this WOULD be the correct answer
In a scenario where a question specifies that both routes are equally preferred due to equal administrative distances or if the router is configured to treat overlapping routes differently, this option could be correct. For example, if the question states that the router uses a round-robin method for load balancing between equal-cost paths, then both routes would be used.
Why candidates choose this
Students may think that overlapping prefixes create a conflict or error, similar to overlapping IP addresses on interfaces, but routing protocols handle overlapping prefixes without issue.
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
Quick reference
Routing Protocol Comparison
| Protocol | Metric | Max Hops | Algorithm | Type |
|---|---|---|---|---|
| RIP v2 | Hop count | 15 | Bellman-Ford | Distance vector |
| OSPF | Cost (bandwidth) | Unlimited | Dijkstra (SPF) | Link state |
| EIGRP | Composite metric | Unlimited | DUAL | Hybrid |
| IS-IS | Cost | Unlimited | Dijkstra | Link state |
| BGP | Policy / attributes | Unlimited | Path vector | Path vector |
RIP's 15-hop limit makes it unsuitable for large networks. OSPF and EIGRP dominate modern enterprise deployments.
Go deeper
Related to this question
Learn chapter
Interpreting HSRP and VRRP Operational Status
Key term
OSPF
OSPF is a link-state routing protocol that uses the SPF algorithm to compute the shortest path to each destination within a single autonomous system.
Key term
OSPF
OSPF is a link-state routing protocol used to find the best path for data packets to travel across IP networks, like a smart GPS that recalculates routes when traffic changes.
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 →
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.