A network administrator is troubleshooting an issue where workstation users are directed to an old server IP address for an internal web application hosted at `app.corp.internal`. The administrator suspects the local DNS server (`192.168.1.1`) is returning a cached, non-authoritative record. Which command should the administrator run to query the authoritative DNS server at `10.100.1.10` directly for the IPv4 address record?
- nslookup app.corp.internal 10.100.1.10Answer
- Bdig -t AAAA app.corp.internal @10.100.1.10
- Cnslookup -port=80 app.corp.internal 10.100.1.10
- Ddig app.corp.internal -server 10.100.1.10
Answer
The command `nslookup app.corp.internal 10.100.1.10` directly queries the authoritative DNS server for the standard IPv4 address (A record) of the specified host.
The command `nslookup app.corp.internal 10.100.1.10` instructs `nslookup` to send a default IPv4 (A record) lookup query for `app.corp.internal` directly to the specified server address `10.100.1.10`, bypassing the host's default configured DNS server.
Step-by-Step Solution
Key Concept
Direct DNS Querying via Command-Line Utilities