Reverse DNS Lookup

Find the hostname associated with an IP address using PTR (Pointer) records.

IPv4 or IPv6 format

Understanding Reverse DNS

What is Reverse DNS?

Reverse DNS lookup is the opposite of forward DNS. Instead of translating a domain name to an IP address, it translates an IP address to a domain name. This uses PTR (Pointer) records in the DNS system.

Forward: example.com → 93.184.216.34
Reverse: 93.184.216.34 → example.com

How PTR Records Work

PTR records are stored in reverse DNS zones. The IP address is reversed and appended with ".in-addr.arpa" (for IPv4) or ".ip6.arpa" (for IPv6). For example, IP 192.168.1.1 becomes 1.1.168.192.in-addr.arpa.

Common Uses

  • Email server validation (DNSRBL checks)
  • Security audits and network analysis
  • Identifying suspicious IPs
  • Network troubleshooting
  • Server identification

Important Notes

  • Not all IPs have PTR records
  • Requires proper DNS configuration
  • Reverse zone managed by ISP
  • May not match hostname DNS
  • Used for spam detection

Real-World Application

Reverse DNS is critical for email authentication. Mail servers use PTR lookups to verify that the sending IP actually has a legitimate hostname configured. This helps reduce spam and improve email deliverability.

Combined with SPF, DKIM, and DMARC records, reverse DNS is part of a comprehensive email security strategy.