A user reports that they cannot access the internet, but they can access local resources on the same subnet. The network administrator pings the default gateway and gets a response. Which tool should be used next to trace the path to an external website?
Traceroute (or `tracert` on Windows) is the ideal tool for diagnosing connectivity issues beyond the local network, such as the inability to reach the internet while local resources are accessible. It works by sending packets with incrementally increasing Time-to-Live (TTL) values, causing each successive router along the path to return an ICMP "Time Exceeded" message. This process maps the entire route to the destination, clearly identifying the specific hop where packets stop forwarding or time out, thereby pinpointing the exact point of failure in the internet path.
Why this answer
B is correct because traceroute (tracert on Windows) is the appropriate tool to identify where packets are being dropped or delayed along the path from the local host to an external website. Since the user can access local resources and the default gateway responds to pings, the issue likely lies beyond the gateway, and traceroute will reveal the hop where connectivity fails.
Exam trap
The N10-009 exam often tests the misconception that a successful ping to the default gateway guarantees internet connectivity, but the trap here is that the problem may be at a subsequent hop, and traceroute is the correct tool to isolate that hop.
Why the other options are wrong
Netstat displays network connections, routing tables, and interface statistics, but it does not trace the path packets take to a destination. The question requires tracing the route to an external website, which is exactly what traceroute does.
nslookup is used to query DNS servers to resolve domain names to IP addresses, not to trace the network path. The issue here is about tracing the route to an external website, which requires path discovery, not DNS resolution.
ARP is used to resolve IP addresses to MAC addresses on a local network, not to trace the path to an external website. Since the user can access local resources and the default gateway responds, ARP is not the next step for diagnosing internet connectivity.
When would these options actually be correct?
A user reports slow network performance, and you need to check which active connections are consuming bandwidth or if there are unexpected connections. Netstat would be the correct tool to list all current TCP/UDP connections and listening ports.
nslookup would be correct in a scenario where a user cannot access a website by name but can access it by IP address, indicating a DNS resolution problem. The question would ask which tool to use to verify DNS resolution.
When a user cannot access any network resources, including local ones, and you suspect an IP address conflict or incorrect MAC address mapping. In that scenario, using ARP to check the local ARP cache or verify the gateway's MAC address would be appropriate.
Why candidates pick the wrong answer
Candidates may confuse netstat with traceroute because both are network diagnostic tools, or they might think netstat can show the route by examining routing tables, but it cannot trace the actual path to a remote host.
Candidates may confuse network connectivity issues with DNS issues, thinking that if a website is unreachable, the problem must be with name resolution, so they choose nslookup without considering that local resources are accessible and the gateway responds.
Candidates may confuse ARP with tools that diagnose network connectivity issues, thinking it can help trace routes because it deals with network layer addressing, but it only operates on the local link.