A network administrator is troubleshooting a client workstation that receives a name resolution error when attempting to reach an internal portal at `hrportal.contoso.com`. In what sequence should the administrator execute the following steps to systematically isolate the issue according to standard operating system name resolution precedence?
- 1Inspect the local HOSTS file for static entry overrides pointing to an outdated IP address.
- 2Flush the client's local DNS resolver cache using `ipconfig /flushdns` to clear stale records.
- 3Execute `nslookup hrportal.contoso.com` against the primary DNS server to test server-side record resolution.
- 4Perform a `ping` command against the resolved IP address to verify Layer 3 network reachability.
Answer
The correct order follows operating system resolution precedence: first inspect the local static HOSTS file, second flush the OS DNS resolver cache, third perform a direct `nslookup` against the DNS server, and fourth verify Layer 3 IP reachability using `ping`.
Troubleshooting follows OS resolution precedence: checking local HOSTS entries first, clearing the local resolver cache second, querying the DNS server directly via `nslookup` third, and testing IP connectivity via `ping` fourth once an IP is obtained.
Step-by-Step Solution
Key Concept
OS Name Resolution Order and Systematic DNS Troubleshooting Sequence