A network administrator is troubleshooting a reverse DNS resolution failure for an internal database server with IP address . The administrator executes a diagnostic command on a client workstation and receives the following output:
text
$ dig -x 192.168.10.45
;; QUESTION SECTION:
;45.10.168.192.in-addr.arpa. IN PTR
;; ANSWER SECTION:
;; AUTHORITY SECTION:
10.168.192.in-addr.arpa. 3600 IN SOA ns1.corp.internal. admin.corp.internal. 2026072701 7200 3600 1209600 3600
;; SERVER: 192.168.10.2#53(192.168.10.2)
Based on the diagnostic output, which of the following DNS configuration changes is required on the authoritative server to resolve the query successfully?
- Add a PTR record mapping to the database server's fully qualified domain name (FQDN).Cevap
- BAdd an A record mapping the database server's hostname directly to the IP address in the forward lookup zone.
- CConfigure a dynamic CNAME record to map port 53 DNS query requests directly to port 80 HTTP services.
- DReconfigure the client resolver to force TCP transport instead of UDP for standard reverse query lookups on port 53.
Cevap
Add a PTR record mapping to the database server's fully qualified domain name (FQDN).
The `dig -x` diagnostic tool requests a reverse DNS lookup for an IP address. The command output shows a query for ``. Because the server returns an AUTHORITY section with an SOA record but no ANSWER section, the reverse lookup zone is present on the server, but the specific PTR record for host address has not been configured.
Adım Adım Çözüm
Anahtar Kavram
Reverse DNS Resolution and PTR Records