Understand and configure reverse DNS to improve your email deliverability.
PTR (Pointer) records enable reverse DNS resolution: finding a domain name from an IP address. If A records map names → IPs, PTR records do the opposite: IP → name. This bidirectional verification capability is fundamental for email deliverability and network security.
When an email server receives a connection, it often performs a reverse DNS check. If the sender's IP has no PTR, or if the PTR doesn't match the announced hostname, the email risks being marked as spam or rejected. Major providers (Gmail, Microsoft, Yahoo) are particularly strict on this.
Unlike most DNS records you manage directly, PTRs are typically configured by the IP range owner - usually your host or ISP. Understanding how they work and how to configure them is essential for any mail server administrator.
PTR records work in a special DNS zone called in-addr.arpa:
Missing or misconfigured reverse DNS directly impacts your emails:
PTR configuration requires coordination with your IP provider:
Here's how to verify and understand PTR records:
# Check an IP's PTR (reverse lookup)
$ dig -x 203.0.113.25 +short
mail.example.com.
# Verify the A matches (forward lookup)
$ dig A mail.example.com +short
203.0.113.25
# Successful configuration: FCrDNS verified
# IP → PTR → name → A → same IP
# Full verification with MXToolbox or similar
# or via nslookup
$ nslookup 203.0.113.25
25.113.0.203.in-addr.arpa name = mail.example.com.
# In the reverse zone file (managed by IP owner)
; Zone 113.0.203.in-addr.arpa
25 IN PTR mail.example.com.
# Email deliverability test
$ telnet alt1.gmail-smtp-in.l.google.com 25
220 mx.google.com ESMTP
HELO mail.example.com
250 mx.google.com at your service
FCrDNS (Forward-Confirmed reverse DNS) verification is key: the PTR must point to a name, and that name must have an A pointing back to the original IP. This bidirectional consistency is what email servers verify.
Optimize your reverse DNS configuration:
PTRs are managed in the reverse zone (in-addr.arpa), which belongs to the IP range owner. Only your host or ISP can create PTRs for their IPs.
PTRs typically have short TTLs (1-24h). Once configured by your host, propagation takes a few hours at most.
Some shared hosts don't allow custom PTRs. Options: switch to VPS/dedicated, use an email sending service (SendGrid, Mailgun), or change hosts.
Yes, if your mail server uses IPv6, also configure the IPv6 PTR (ip6.arpa zone). Many servers check both.
No, PTR doesn't affect SEO or standard web functionality. Its main impact is on email deliverability and log identification.
Yes, MoniTao can monitor your DNS records including reverse DNS. You're alerted if your PTR changes or disappears.
Reverse DNS via PTR records is an often-neglected pillar of email deliverability. A properly configured PTR with verified FCrDNS significantly improves your chances of reaching the inbox.
Contact your host to configure an appropriate PTR, create the matching A record, and monitor this configuration. MoniTao can alert you if your reverse DNS changes unexpectedly.
Start free, no credit card required.