A network administrator is troubleshooting name resolution issues on a Linux workstation. The administrator runs the command `dig @10.0.0.5 webserver.company.local` and receives the following output:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 18402
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;webserver.company.local. IN A
Which of the following is the most accurate interpretation of this command output?
- The DNS server is reachable and active, but no IPv4 address (A) record exists for the requested hostname.Cevap
- BThe DNS server does not exist or failed to respond on UDP port 53, resulting in a query timeout.
- CThe domain name `webserver.company.local` is completely invalid and was rejected by the authoritative server with an NXDOMAIN response.
- DThe DNS server requires clients to request IPv6 resolution using AAAA records before processing IPv4 address requests.
Cevap
The DNS server processed the request successfully (NOERROR), but no IPv4 address (A) record is configured for the requested hostname (ANSWER: 0).
The command output header status `NOERROR` confirms successful communication with the DNS server at 10.0.0.5, while `ANSWER: 0` shows that no host address (A) record is present for `webserver.company.local`.
Adım Adım Çözüm
Anahtar Kavram
Interpreting DNS Query Status Codes and Answer Counts using CLI Tools