PTR RecordPointer Record
A PTR record (pointer record) maps an IP address back to a hostname, the exact reverse of an A record. It is what makes a reverse DNS lookup possible: ask “who is 203.0.113.10?” and the PTR answers mail.example.com. Defined as DNS type 12 in RFC 1035, it lives in a special reverse zone and is set by whoever controls the IP, usually your hosting provider.
- Maps an IP address to a hostname, the reverse of an A record
-
Lives in a special reverse zone (
in-addr.arpafor IPv4) - Set by the owner of the IP block, usually your host or ESP, not in your normal DNS
- Required by Gmail and Yahoo on every sending IP since February 2024
PTR (type 12)
in-addr.arpa
ip6.arpa
How a PTR record is structured
An A record answers “what IP does this name point to?” A PTR record answers the opposite: “what name does this IP point to?” To make that lookup work, the IP is reversed and placed under a special domain. The IPv4 address 203.0.113.10 becomes the name 10.113.0.203.in-addr.arpa, whose PTR record holds the hostname. IPv6 uses the ip6.arpa zone in the same reversed style.
The catch is who controls it. Forward records like A and TXT sit in your own DNS zone, but the reverse zone belongs to whoever owns the IP block: your hosting provider, cloud platform, or email service. That means you usually cannot set a PTR yourself; you request it from your provider, often through a control panel field labelled “reverse DNS” or “PTR.”
10.113.0.203.in-addr.arpa. 3600 IN PTR mail.example.com.
Why mail servers insist on a PTR record
When you connect to deliver mail, the receiving server takes your IP and runs a reverse DNS lookup on it. A missing or generic PTR (something like 203-0-113-10.dynamic.isp.net) is a classic spammer fingerprint, because legitimate mail servers have a clean, dedicated hostname. Worse, the better receivers do not stop at the PTR: they take the hostname it returns and resolve that back to an IP, checking it matches. That round trip is forward-confirmed reverse DNS.
This stopped being optional in February 2024, when Google and Yahoo began requiring every sending IP to have a valid PTR whose hostname resolves back to the same IP. Without it, bulk mail is rejected or filtered. You can confirm yours with our reverse DNS checker.
How a receiver checks your PTR record
203.0.113.10 to deliver mailPTR record vs A record
| A record | PTR record | |
|---|---|---|
| Direction | Hostname to IP | IP to hostname |
| Lives in | Your forward DNS zone | The reverse zone (in-addr.arpa) |
| Who sets it | You / your DNS host | The IP block owner / your provider |
| Email role | Resolving mail servers | Reverse DNS and FCrDNS |
By the numbers
Common mistakes
203-0-113-10.dynamic.isp.net reads as residential or dynamic space and hurts deliverability. Set a clean, dedicated mail hostname such as mail.example.com.