Question 908 of 1,819
IP RoutingeasyMultiple ChoiceObjective-mapped

Quick Answer

The answer is ip route 0.0.0.0 0.0.0.0 192.0.2.1. This is correct because the default static route syntax uses two quad zeros—0.0.0.0 for the destination network and 0.0.0.0 for the subnet mask—to create a gateway of last resort that matches any IPv4 destination not found in the routing table. On the CCNA 200-301 v2 exam, this concept tests your ability to configure a default route for stub networks or when a router must forward all unknown traffic to a single next hop, such as an ISP edge router. A common trap is confusing the quad-zero route with a specific static route; remember that the default route has the least specific prefix length of /0. For a memory tip, think of the two zeros as a “double zero” that catches everything—like a wildcard for destinations.

CCNA IP Routing Practice Question

This 200-301 practice question tests your understanding of ip routing. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: a static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Which static route on R1 sends all unknown IPv4 destinations to next-hop address 192.0.2.1?

Question 1easymultiple choice
Read the full NAT/PAT explanation →

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

ip route 0.0.0.0 0.0.0.0 192.0.2.1

A quad-zero route is the IPv4 default route. It matches destinations that do not have a more specific entry in the routing table.

Key principle: A static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers.

Answer analysis

Option-by-option breakdown

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

  • ip route 0.0.0.0 255.255.255.255 192.0.2.1

    Why it's wrong here

    This route would describe only the single host 0.0.0.0, not all unknown destinations.

    When this WOULD be correct

    If the exam question asked for a specific route to a single host (e.g., 'Which static route on R1 sends traffic only for the IP address 0.0.0.0 to next-hop address 192.0.2.1?'), then option A would be correct as it defines a route for that specific host.

  • ip route 0.0.0.0 0.0.0.0 192.0.2.1

    Why this is correct

    Correct. 0.0.0.0/0 is the standard IPv4 default route.

    Related concept

    A static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers.

  • ip route 255.255.255.255 0.0.0.0 192.0.2.1

    Why it's wrong here

    The address and mask are reversed and do not define a valid default route.

    When this WOULD be correct

    This option would be correct in a scenario where the question asks for a route that matches a specific broadcast address, such as directing traffic for all broadcast packets to a next-hop address, which would be relevant in certain network configurations.

  • ip default-gateway 192.0.2.1

    Why it's wrong here

    ip default-gateway is used on devices that are not routing, such as many Layer 2 switches.

    When this WOULD be correct

    If the exam question asked for the command to set a default gateway for a Layer 2 device like a switch, then 'ip default-gateway 192.0.2.1' would be the correct answer, as it would direct traffic to the specified gateway for devices that do not have a specific route.

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.

ip route 0.0.0.0 0.0.0.0 192.0.2.1Correct answer

Why this is correct

Correct. 0.0.0.0/0 is the standard IPv4 default route.

ip route 0.0.0.0 255.255.255.255 192.0.2.1Wrong answer — click to see why

Why this is wrong here

The mask 255.255.255.255 specifies a host route, meaning this route matches only the single IP address 0.0.0.0, not all destinations. A default route requires a mask of 0.0.0.0 to match any destination.

★ When this WOULD be the correct answer

If the exam question asked for a specific route to a single host (e.g., 'Which static route on R1 sends traffic only for the IP address 0.0.0.0 to next-hop address 192.0.2.1?'), then option A would be correct as it defines a route for that specific host.

Why candidates choose this

Students may confuse the all-zeros network address with a default route, but the mask is critical. Using a /32 mask is a common mistake when trying to create a default route.

ip route 255.255.255.255 0.0.0.0 192.0.2.1Wrong answer — click to see why

Why this is wrong here

The address 255.255.255.255 is a broadcast address, and the mask 0.0.0.0 is invalid for a default route. The correct syntax for a default route is 'ip route 0.0.0.0 0.0.0.0 next-hop'. This option has the network and mask reversed.

★ When this WOULD be the correct answer

This option would be correct in a scenario where the question asks for a route that matches a specific broadcast address, such as directing traffic for all broadcast packets to a next-hop address, which would be relevant in certain network configurations.

Why candidates choose this

Some test-takers might think that using all ones in the network field represents 'all networks', but this is incorrect. The default route uses all zeros for both network and mask.

ip default-gateway 192.0.2.1Wrong answer — click to see why

Why this is wrong here

The 'ip default-gateway' command is used on devices that do not run IP routing, such as Layer 2 switches, to provide a default gateway for management traffic. On a router, the correct command to set a default route is 'ip route 0.0.0.0 0.0.0.0'.

★ When this WOULD be the correct answer

If the exam question asked for the command to set a default gateway for a Layer 2 device like a switch, then 'ip default-gateway 192.0.2.1' would be the correct answer, as it would direct traffic to the specified gateway for devices that do not have a specific route.

Why candidates choose this

The term 'default-gateway' sounds similar to 'default route', leading students to believe it is the correct command for routers. However, routers use the 'ip route' command for static routing.

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?”

Common exam traps

Common exam trap: answer the scenario, not the keyword

A frequent exam trap is selecting a static route with the destination 0.0.0.0 but an incorrect subnet mask like 255.255.255.255, which matches only the single host 0.0.0.0 rather than all unknown destinations. Another common mistake is confusing the 'ip default-gateway' command with a default route; the former is used only on devices that do not perform routing, such as Layer 2 switches, and does not influence routing decisions on routers. Candidates must recognize that the default route requires both destination and mask to be 0.0.0.0 to function correctly as a catch-all route for unknown IPv4 destinations.

Detailed technical explanation

How to think about this question

A static route in Cisco IOS is a manually configured route that tells the router exactly where to forward packets for a specific destination network. The default route, represented as 0.0.0.0/0, is a special static route that matches any IPv4 destination address not found in the routing table. This route acts as a catch-all path for unknown or unspecified destinations, directing traffic to a next-hop IP address or exit interface. In Cisco routers, the command syntax for a static route is "ip route [destination_network] [subnet_mask] [next_hop_address]". The default route uses the destination network 0.0.0.0 with a subnet mask of 0.0.0.0, meaning it matches all possible IPv4 addresses. When a packet’s destination does not match any more specific route in the routing table, the router forwards the packet to the next-hop IP address specified in the default route. This is essential for routers at the edge of a network or in stub networks to forward traffic toward upstream routers or the internet. The command "ip route 0.0.0.0 0.0.0.0 192.0.2.1" configures such a default route pointing to the next-hop 192.0.2.1. A common exam trap is confusing the default route with other static routes that use incorrect destination or mask values, such as 0.0.0.0 with a mask of 255.255.255.255, which matches only a single host address rather than all unknown destinations. Additionally, the "ip default-gateway" command is often mistaken for a default route but is only applicable on non-routing devices like Layer 2 switches. Understanding the exact syntax and purpose of the default route ensures correct routing behavior and avoids misconfiguration in Cisco environments.

KKey Concepts to Remember

  • A static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers.
  • The IPv4 default route uses the destination 0.0.0.0 with a subnet mask of 0.0.0.0 to match all unknown or unspecified IPv4 addresses.
  • Cisco routers forward packets to the next-hop IP address specified in the default route when no more specific route exists in the routing table.
  • The command syntax for a static route is 'ip route [destination_network] [subnet_mask] [next_hop_address]' in Cisco IOS.
  • The 'ip default-gateway' command configures a gateway for non-routing devices and does not create a routing entry for unknown destinations.
  • Using an incorrect subnet mask with 0.0.0.0, such as 255.255.255.255, causes the route to match only a single host, not all unknown destinations.
  • A default route is essential in stub networks or edge routers to forward traffic toward upstream routers or the internet.
  • Routers always prefer the most specific route in the routing table; the default route is the least specific and used only if no other match exists.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

A static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers.

Real-world example

How this comes up in practice

A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.

What to study next

Got this wrong? Here's your next step.

Review a static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers., then practise related 200-301 questions on the same topic to reinforce the concept.

Related practice questions

Related 200-301 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free 200-301 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this 200-301 question test?

IP Routing — This question tests IP Routing — A static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers..

What is the correct answer to this question?

The correct answer is: ip route 0.0.0.0 0.0.0.0 192.0.2.1 — A quad-zero route is the IPv4 default route. It matches destinations that do not have a more specific entry in the routing table.

What should I do if I get this 200-301 question wrong?

Review a static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers., then practise related 200-301 questions on the same topic to reinforce the concept.

What is the key concept behind this question?

A static route manually defines a specific path for forwarding packets to a destination network or host in Cisco routers.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Last reviewed: May 17, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

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.