What DNS record type is used to provide the hostname associated with an IP address (reverse DNS), and what zone naming convention is used for IPv4 reverse lookups?
- A.PTR (Pointer) records handle reverse DNS; for IPv4 reverse lookups, the zone is named using the reverse octets of the network address followed by '.in-addr.arpa' (e.g., the zone for 192.168.1.0/24 is '1.168.192.in-addr.arpa'); a PTR record maps 192.168.1.50 to a hostname by creating '50.1.168.192.in-addr.arpa. IN PTR server.corp.local.'
- B.A records handle both forward and reverse DNS; the same A record is used for both hostname-to-IP and IP-to-hostname lookups
- C.Reverse DNS uses MX records; MX records contain IP-to-hostname mappings for all mail-related devices
- D.PTR records use the format 'IP.ptr.arpa' (e.g., '192.168.1.50.ptr.arpa') for IPv4 reverse lookups
Why A is correct