A network engineer is troubleshooting a client workstation that cannot connect to an internal web portal using its hostname `srv01.corp.internal`. The engineer executes two `nslookup` queries from the client's command prompt:
text
C:\> nslookup srv01.corp.internal
Server: UnKnown
Address: 192.168.1.1
*** UnKnown can't find srv01.corp.internal: Non-existent domain
C:\> nslookup srv01.corp.internal 10.0.0.53
Server: dc01.corp.internal
Address: 10.0.0.53
Name: srv01.corp.internal
Address: 10.0.0.150
Based on the output above, which of the following are the MOST likely root causes of the name resolution issue on the workstation? (Select TWO.)
- The workstation is assigned a default DNS resolver IP address that lacks the internal domain zone information.Answer
- BThe internal domain controller DNS service at 10.0.0.53 is offline or unresponsive to incoming queries.
- The local DHCP server scope is misconfigured to distribute a local gateway or public DNS server address instead of the internal DNS server.Answer
- DThe host record for srv01.corp.internal was created as an MX record instead of an A record on the domain controller.
Answer
The workstation is configured with a default DNS server (192.168.1.1, likely a home router or upstream gateway) that does not maintain or forward queries for the internal domain `.corp.internal`. Furthermore, the DHCP server scope distributing network configurations to local clients is misconfigured to pass out 192.168.1.1 rather than the authoritative internal DNS server (10.0.0.53).
The initial query to default DNS server 192.168.1.1 fails because that server does not hold authoritative records for the private zone `corp.internal`. However, explicitly specifying the internal DNS server (10.0.0.53) in the command parameter resolves the hostname successfully. This demonstrates that the internal DNS server is functioning and configured properly with the host A record, but client workstations are using an incorrect default DNS server assigned via DHCP.
Step-by-Step Solution
Key Concept
DNS Server Configuration & DHCP Resolver Scopes