A user reports that they can access internal resources such as file shares and printers by name, but they cannot access any external websites. The technician checks the IP configuration and finds the workstation has a valid IP address, subnet mask, default gateway, and DNS server addresses. The technician can successfully ping the default gateway and an external IP address like 8.8.8.8. Which of the following should the technician check NEXT?
The user can access internal resources by name and can reach external IPs, so the DNS server must be able to resolve external names. If the DNS server is not configured to forward queries or is using a root hint that fails, this would explain the symptom.
Why this answer
The user can access internal resources by name and can ping an external IP address (8.8.8.8), which confirms that IP routing, the default gateway, and basic network connectivity are working. The inability to access external websites by name, despite having DNS server addresses configured, points directly to a DNS resolution failure for external domains. Therefore, the next logical step is to verify that the configured DNS server can resolve external domain names, such as by using `nslookup` or `dig` to query a public domain like google.com.
Why the other options are wrong
The technician can already ping an external IP (8.8.8.8), proving that routing to the internet works. Traceroute would only confirm the same path; the issue is name resolution, not routing.
When would these options actually be correct?
A user cannot access an external website, but can ping the external IP and internal resources. The technician suspects a routing issue at an intermediate hop, so traceroute would identify where packets are dropped.
If the user could not access external websites but could ping external IPs and internal resources, and the DNS server was known to be functioning, then checking the Windows Firewall for outbound HTTP/HTTPS rules would be appropriate.
A user cannot access any network resources, and the workstation has an APIPA address (169.254.x.x) or an incorrect IP configuration. Renewing the DHCP lease would obtain a valid address from the DHCP server.
Why candidates pick the wrong answer
Candidates often default to traceroute for any connectivity issue, not recognizing that successful external IP ping rules out routing problems, making DNS the more logical next step.
Candidates often assume that inability to browse websites is due to firewall blocking HTTP/HTTPS, overlooking that successful external pings rule out a general outbound block.
Candidates may think that DHCP issues are the cause of connectivity problems, but here the IP configuration is valid, so DHCP is not the problem.