Reverse DNS Lookup

Look up the PTR record for an IP address to find its associated hostname. Used by mail servers, network monitoring tools, and security analysts to identify IP owners.

What Is Reverse DNS?

Reverse DNS (rDNS) translates an IP address back to a hostname. While forward DNS maps names to IPs (A records), reverse DNS maps IPs to names using PTR records stored in the special in-addr.arpa zone. For IPv6, the equivalent zone is ip6.arpa.

Why PTR Records Matter

Use CaseWhy Reverse DNS Is Checked
Email deliveryMail servers verify PTR records - Missing rDNS often causes email to be marked as spam
Security auditingIdentifies server operators and helps attribute network activity
Network troubleshootingMakes ping, traceroute, and log file entries human-readable
Abuse reportingHelps identify ISPs responsible for abusive IP ranges

Forward vs Reverse DNS

TypeDirectionRecord typeExample
Forward DNSHostname → IPA / AAAAexample.com → 93.184.216.34
Reverse DNSIP → HostnamePTR93.184.216.34 → example.com

Why Reverse DNS Matters

Reverse DNS has real-world consequences for deliverability, security, and reputation. The most critical use case is email: major email providers like Gmail, Microsoft 365, and Yahoo will reject or spam-folder email from IPs without a valid PTR record that matches the sending hostname (FCrDNS - Forward-Confirmed Reverse DNS).

Email Rejection Rate by PTR Status

Approximate rejection rate for email sent from IPs with each PTR configuration

No PTR record
~75% rejected/spam
PTR set, no FCrDNS
~45% spam-foldered
PTR + FCrDNS match
~8% deliverability issues
PTR + FCrDNS + SPF/DKIM
Best deliverability

How PTR Records Are Structured

PTR records are stored in a reversed IP address format within the in-addr.arpa zone. For IP 1.2.3.4, the PTR query is made to 4.3.2.1.in-addr.arpa. This reversal allows the existing DNS delegation hierarchy to be used for IP space management, since IP blocks are allocated by prefix (left to right) while the DNS tree is read right to left.

Frequently Asked Questions

How do I set a PTR record for my IP?

PTR records are controlled by whoever holds the IP address allocation - Typically your hosting provider or ISP, not your domain registrar. Contact your server host and request that they set a PTR record for your IP pointing to your mail server's hostname. Many cloud providers (AWS, DigitalOcean, Vultr) allow self-service PTR record management in their dashboards.

What is FCrDNS?

Forward-Confirmed Reverse DNS (FCrDNS) means the PTR record for an IP resolves to a hostname, and that hostname's A record resolves back to the same IP. This bidirectional consistency is a strong signal that the IP is legitimately operated, and is required by some receiving mail servers.

Can I have multiple PTR records for one IP?

Technically yes, but it is strongly discouraged. Most implementations only use the first PTR record returned, and multiple PTR records can cause unpredictable behavior in email delivery and security tools. Best practice is one PTR per IP.

Why does my home IP have no PTR record?

Most residential ISPs do not configure PTR records for dynamic home IP addresses. This is normal and expected. A missing PTR is only a problem for servers - Particularly mail servers - That need to be recognized as legitimate senders.

Related Tools