A network technician is troubleshooting a workstation that is experiencing name resolution issues. Arrange the following diagnostic and remediation steps in the correct sequential order from first to last.
- 1Verify the workstation's IP address configuration and DNS server address.
- 2Check local resolution files such as the HOSTS file and view the local DNS resolver cache.
- 3Execute `nslookup` to test direct query resolution against the configured DNS server.
- 4Flush the local DNS resolver cache using `ipconfig /flushdns` to clear stale or invalid entries.
Answer
The correct order begins with verifying the client's IP and DNS server configuration, followed by checking local resolution entries, performing an nslookup test against the DNS server, and finally flushing the local DNS cache.
Troubleshooting begins by verifying basic client IP settings and DNS server assignments. Next, local resolution mechanisms (such as the HOSTS file and resolver cache) must be inspected. Once local settings are confirmed, interactive tools like `nslookup` are used to test DNS server responses directly. Finally, clearing stale cache entries with `ipconfig /flushdns` ensures updated records are loaded.
Step-by-Step Solution
Key Concept
Sequential DNS Troubleshooting Methodology