Courseiva
Question 331 of 1,389
Network Services and SecuritymediumMultiple ChoiceObjective-mapped

CCNA Network Services and Security Practice Question

A branch router has only one WAN link connected to an Ethernet handoff from the provider. Which static default route is generally the better choice?

⚠ Common exam trap

A common exam trap is selecting a static default route that specifies only the exit Ethernet interface without a next-hop IP address. While this configuration can work, it causes the router to treat all unknown destinations as directly connected on the Ethernet segment. This behavior triggers excessive ARP requests for every unknown IP address, leading to network inefficiency and potential delays. Candidates might incorrectly assume that specifying the interface alone is sufficient, but on multiaccess Ethernet links, this is suboptimal and can cause routing issues.

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 198.51.100.1

On multiaccess Ethernet, pointing the default route to a next-hop IP address is usually cleaner because the router can resolve the next hop with ARP. Using only the exit interface on Ethernet can make the router treat many destinations as directly connected and trigger unnecessary ARP behavior.

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 0.0.0.0 GigabitEthernet0/0

    Why it's wrong here

    Configuring a static default route with only an exit interface (e.g., ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0) can work, but on multiaccess Ethernet it is less ideal. Without a next-hop IP, the router assumes every destination is directly connected and will broadcast ARP requests for each remote destination, which creates excessive ARP traffic and often requires the provider to run proxy ARP. Using the provider's next-hop IP avoids these issues by specifying the exact gateway and allowing normal ARP resolution only for that gateway.

    When this WOULD be correct

    In a different scenario where a router has multiple WAN links and the question asks for a static route to be configured for a specific interface, option A could be correct if the interface is indeed the exit point for traffic. For example, if the question specifies routing traffic out of a specific GigabitEthernet interface without a defined next-hop IP.

  • ip route 0.0.0.0 0.0.0.0 198.51.100.1

    Why this is correct

    This command installs a default route (0.0.0.0/0) with a next-hop IP of 198.51.100.1. On an Ethernet multiaccess link, specifying the next-hop address is preferable because the router will ARP for that specific gateway and use the resolved MAC as the frame destination, while also tracking reachability via ARP. This approach avoids relying solely on the interface being up and works cleanly on provider Ethernet handoffs, where the next-hop is a known device.

  • ip route 255.255.255.255 255.255.255.255 198.51.100.1

    Why it's wrong here

    This command creates a host route for the single address 255.255.255.255, not a default route. A default route must have a prefix of 0.0.0.0 with a mask of 0.0.0.0 so it matches all destinations. Furthermore, pointing a host route at a next hop of itself (198.51.100.1) is nonsensical and would only affect traffic destined to that exact address, leaving all other traffic without a path.

    When this WOULD be correct

    In a scenario where a router needs to direct traffic specifically to a single host IP address (e.g., a management server) rather than a default route, the command 'ip route 255.255.255.255 255.255.255.255 198.51.100.1' would be appropriate for routing traffic intended only for that host.

  • No static default route should ever be used on Ethernet.

    Why it's wrong here

    Static default routes are perfectly valid and commonly used on Ethernet WAN links, such as carrier Ethernet or MPLS handoffs, so the claim that they should never be used is incorrect. The issue is not the medium but how the route is specified; using a next-hop IP is standard and works well. Overbroad prohibitions like this ignore that many networks rely on static defaults for simple and predictable egress routing.

    When this WOULD be correct

    In a scenario where the question specifies that a router is connected to multiple WAN links, and the requirement is to ensure no static routes are used for redundancy or load balancing, option D could be correct. This would imply that dynamic routing protocols are preferred for managing multiple paths.

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 198.51.100.1Correct answer

Why this is correct

This command installs a default route (0.0.0.0/0) with a next-hop IP of 198.51.100.1. On an Ethernet multiaccess link, specifying the next-hop address is preferable because the router will ARP for that specific gateway and use the resolved MAC as the frame destination, while also tracking reachability via ARP. This approach avoids relying solely on the interface being up and works cleanly on provider Ethernet handoffs, where the next-hop is a known device.

ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0Wrong answer — click to see why

Why this is wrong here

Using an exit interface (GigabitEthernet0/0) without a next-hop address on a multiaccess Ethernet link can cause the router to send ARP requests for every destination IP, leading to high CPU usage and potential ARP table exhaustion. It also prevents the router from using proxy ARP or detecting next-hop failures efficiently.

★ When this WOULD be the correct answer

In a different scenario where a router has multiple WAN links and the question asks for a static route to be configured for a specific interface, option A could be correct if the interface is indeed the exit point for traffic. For example, if the question specifies routing traffic out of a specific GigabitEthernet interface without a defined next-hop IP.

Why candidates choose this

Students often think specifying the exit interface is simpler and sufficient, especially when the router has only one WAN link. They may confuse this with point-to-point links where interface-only static routes are appropriate.

ip route 255.255.255.255 255.255.255.255 198.51.100.1Wrong answer — click to see why

Why this is wrong here

The command 'ip route 255.255.255.255 255.255.255.255 198.51.100.1' creates a host route for the specific IP 255.255.255.255, not a default route. A default route must have a destination network of 0.0.0.0 with a mask of 0.0.0.0.

★ When this WOULD be the correct answer

In a scenario where a router needs to direct traffic specifically to a single host IP address (e.g., a management server) rather than a default route, the command 'ip route 255.255.255.255 255.255.255.255 198.51.100.1' would be appropriate for routing traffic intended only for that host.

Why candidates choose this

Students might mistakenly think that using all 255s in the destination and mask represents a default route, confusing it with the concept of 'any' or 'all' networks. This is a common misconfiguration due to misunderstanding of IP addressing.

No static default route should ever be used on Ethernet.Wrong answer — click to see why

Why this is wrong here

Static default routes are perfectly valid and commonly used on Ethernet WAN links, especially in branch offices with a single provider connection. They provide a simple and reliable way to route all unknown traffic to the provider's gateway.

★ When this WOULD be the correct answer

In a scenario where the question specifies that a router is connected to multiple WAN links, and the requirement is to ensure no static routes are used for redundancy or load balancing, option D could be correct. This would imply that dynamic routing protocols are preferred for managing multiple paths.

Why candidates choose this

Some students may believe that dynamic routing protocols are always required on Ethernet links, or they may confuse Ethernet with non-broadcast multiaccess (NBMA) networks where static routes can be problematic. This option is an overgeneralization.

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

Client Recursive Resolver Root DNS (13 root servers) TLD DNS (.com, .org, …) Authoritative example.com query IP addr answer

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.