A network administrator runs the following query on a client workstation to test hostname resolution:
> nslookup webserver.corp.local
Server: dns1.corp.local
Address: 10.0.0.10
*** dns1.corp.local can't find webserver.corp.local: Non-existent domain
The administrator verifies that the target server is powered on, fully functional, and reachable directly by its IP address. Which of the following is the most likely cause of this issue?
- The DNS server is missing a host (A) record for the domain name.Answer
- BThe client workstation used UDP port 53 for the query instead of TCP port 53.
- CThe DNS server failed to map the IPv4 address because an AAAA record was requested.
- DThe nslookup utility misinterpreted a non-authoritative server answer as a server failure.
Answer
The DNS server is missing a host (A) record for the domain name.
The 'Non-existent domain' (NXDOMAIN) error returned by nslookup indicates that the client successfully communicated with the DNS server, but the server does not have a matching Host (A) record configured in its DNS zone for the requested hostname.
Step-by-Step Solution
Key Concept
DNS Record Verification and NXDOMAIN Troubleshooting