What Is Reverse DNS (rDNS)? Why PTR Records Matter for Email, Hosting, and Leased IPv4

Reverse DNS (rDNS) is the process of resolving an IP address back to a domain name. It is the mirror image of the DNS lookups most people know: forward DNS translates a name like mail.example.com into an IP address, while reverse DNS translates an IP address back into a name. The record type that stores this answer is called a PTR record.
Table of Contents
For most of the Internet’s history, reverse DNS was a background detail. Today it is an operational requirement for anyone running mail infrastructure. Major mailbox providers, including Gmail and Outlook, now expect sending IP addresses to have valid reverse DNS, and mail from addresses without it is routinely rejected or filtered. A missing PTR record is one of the most common reasons a newly deployed mail server cannot deliver email — and one of the most confusing, because the server itself is configured perfectly.
There is also a control question that many explanations skip: reverse DNS is not managed in your domain’s DNS zone. It is managed by whoever controls the IP address block. That makes rDNS capability something to verify when acquiring or leasing IPv4 space, not something to discover after deployment fails. This article explains how reverse DNS works, what mail servers actually check, who controls the records in different holding models, and how to set it up correctly.
What Is Reverse DNS?
Reverse DNS is a DNS lookup that starts with an IP address and returns the hostname associated with it. The answer is stored in a PTR (pointer) record. When a mail server, logging system, or security tool asks “what name does 203.0.113.10 claim?”, the PTR record for that address provides the answer — for example, mail.example.com.
Three terms are worth fixing precisely, because they are often used interchangeably:
- Reverse DNS (rDNS): the overall process of resolving an IP address to a name.
- PTR record: the specific DNS record type that stores the answer. One PTR record typically maps one IP address to one hostname.
- Reverse zone: the DNS zone in which PTR records for a given IP block live, managed by whoever controls that block.
A useful way to think about it: forward DNS is how the world finds your services. Reverse DNS is how your IP addresses identify themselves when they initiate connections. That self-identification is exactly what receiving mail servers examine before deciding whether to trust an incoming connection.
How Does Reverse DNS Work?
Reverse DNS works through a special DNS namespace called in-addr.arpa (for IPv4), in which IP addresses are written in reverse order and delegated down the same hierarchy that allocates the addresses themselves.
Here is the mechanism, using a worked example:
- The address is reversed and mapped into the rDNS namespace. To look up reverse DNS for 203.0.113.10, a resolver queries the name 10.113.0.203.in-addr.arpa. The octets are reversed because DNS delegation works from the most general label to the most specific, and in IP addresses the most general part comes first.
- Delegation follows the address hierarchy. The relevant Regional Internet Registry delegates the reverse zone for an address block to the nameservers specified by the block’s registered holder (or the party authorized to manage its records). For a /24 such as 203.0.113.0/24, the reverse zone is 113.0.203.in-addr.arpa.
- The zone answers with a PTR record. Inside that zone, the record
10.113.0.203.in-addr.arpa. IN PTR mail.example.com.provides the answer: 203.0.113.10 identifies itself as mail.example.com.
The practical consequence of this design is the point that matters for businesses: PTR records live in the reverse zone of the IP block, not in your domain’s DNS. You can have full control of example.com and still be unable to set reverse DNS for your server — because the reverse zone belongs to whoever holds or manages the IP block. Control over rDNS follows control over the addresses.
IPv6 works the same way conceptually, using the ip6.arpa namespace instead of in-addr.arpa.
Forward DNS vs Reverse DNS
Forward DNS maps names to addresses so clients can find services; reverse DNS maps addresses to names so connections can be identified. They are stored in different zones, managed by different parties, and serve different trust functions.
| Aspect | Forward DNS | Reverse DNS |
|---|---|---|
| Direction | Name → IP address | IP address → name |
| Main record type | A (IPv4) / AAAA (IPv6) | PTR |
| Where it is managed | Your domain’s DNS zone (e.g., example.com) | The IP block’s reverse zone (in-addr.arpa / ip6.arpa) |
| Who controls it | The domain owner | The IP block holder or its authorized manager |
| Primary purpose | Letting clients reach services | Identifying and validating connecting addresses |
The two directions come together in a check called forward-confirmed reverse DNS (FCrDNS). A verifier looks up the PTR record for an IP address, takes the hostname it returns, then performs a forward lookup on that hostname and checks whether it resolves back to the original IP address. When both directions agree — 203.0.113.10 → mail.example.com → 203.0.113.10 — the identity is considered confirmed. When they disagree, or when the PTR record is missing entirely, many receiving systems treat the connection as unverified. FCrDNS matters because it is the version of the check that mail servers actually perform, not a simple PTR existence test.
Why Does Reverse DNS Matter?
Reverse DNS matters because it functions as an identity check for outbound connections — and email delivery is where that check has hard consequences. Four areas are affected in practice:
- Email deliverability. This is the headline case. Major mailbox providers require sending IP addresses to have valid reverse DNS, and Gmail’s sender guidelines explicitly require sending IPs to have PTR records that pass forward-confirmation. Mail from IP addresses without valid rDNS is commonly rejected at connection time or filtered to spam, regardless of how well SPF, DKIM, and DMARC are configured.
- Logging and troubleshooting. Firewalls, load balancers, and analytics systems resolve connecting IPs to names. Meaningful PTR records (mail1.example.com rather than a bare address) make logs across your own and your partners’ systems readable, which shortens incident investigations.
- Access and trust checks by some services. Certain systems — some FTP and SSH configurations, monitoring tools, and legacy enterprise services — perform rDNS checks on connecting clients and may delay or refuse connections that fail them.
- Reputation signaling. A clean, consistent PTR record that matches your infrastructure is one of several signals that reputation systems weigh when assessing an IP address. It does not create good reputation by itself, but its absence — or a generic, auto-generated hostname — contributes to a lower-trust profile. We cover the broader topic in our guide to IP address reputation.
Note what reverse DNS does not do: it is not a security mechanism on its own, since a PTR record proves configuration, not intent. Its role is identification and consistency — and modern mail systems have made that identification mandatory.
Reverse DNS and Email: What Mail Servers Actually Check
Receiving mail servers check three things about a connecting IP’s reverse DNS: that a PTR record exists, that it passes forward-confirmation, and that the hostname looks like deliberate mail infrastructure rather than a generic assignment. Each failure mode has a different consequence:
1. Missing PTR record
The connecting IP has no reverse DNS at all. This is the most severe failure: several large providers reject such connections outright at the SMTP stage, before message content is even evaluated. A brand-new mail server on an IP block whose reverse zone was never delegated or populated will hit this immediately.
2. Failed forward-confirmation (FCrDNS mismatch)
A PTR record exists, but the hostname it returns does not resolve back to the same IP address. This commonly happens after infrastructure changes: a server moves to a new address, the forward A record is updated, and the old PTR record is forgotten. Mismatched rDNS is treated as unverified identity and weighs against the message in filtering decisions.
3. Generic or auto-generated PTR
The PTR record exists and forward-confirms, but reads like 203-0-113-10.pool.provider.example — the pattern of dynamically assigned consumer addresses. Many mail systems treat generic-looking rDNS as a signal that the IP is not intended to run a mail server, and filter accordingly. Deliberate mail infrastructure should carry a deliberate name, such as mail.yourdomain.com, matching the HELO/EHLO name the server presents.
The operational takeaway: before any mail deployment on new IP space — owned or leased — confirm that you can get custom PTR records set for the sending addresses, that they forward-confirm, and that changes can be made quickly when infrastructure moves. If any of those three is uncertain, the mail project has a blocking dependency.
Who Controls Reverse DNS for Your IP Addresses?
Control over reverse DNS follows control over the IP block, which means your ability to set PTR records depends on how you hold your addresses. There are three common models:
Provider-assigned IP addresses
When your addresses come bundled with a hosting, cloud, or connectivity service, the provider controls the reverse zone. Setting or changing a PTR record means using the provider’s control panel where offered, or filing a support ticket where not. Turnaround varies from minutes to days depending on the provider, and some do not offer custom PTR records at all on lower service tiers. If your addresses change — a new VM, a new plan — the rDNS work starts over, and the old records may linger.
Your own registered IPv4 space
When your organization is the registered holder of the block, the RIR delegates the reverse zone to nameservers you specify. You run (or host) the reverse zone and manage PTR records directly, with changes taking effect as fast as your DNS infrastructure allows. This is the maximum-control model, and it comes with the corresponding responsibility: the zone must be maintained, kept consistent with forward DNS, and updated as infrastructure changes.
Leased IPv4 space
With leased addresses, rDNS capability derives from the lease arrangement, not from registration — the reverse zone belongs to the block’s registered holder, and what the lessee can do depends on what the lessor supports and has agreed to. In practice, leases handle reverse DNS in one of three ways:
- Delegation to the lessee: the lessor points the reverse zone (or the relevant portion) at nameservers the lessee operates, giving the lessee direct day-to-day control of PTR records for the leased range.
- Managed PTR changes: the lessor retains the zone and applies PTR records on request. Workable if — and only if — the turnaround is fast and documented.
- No rDNS support: some informal arrangements simply do not address reverse DNS. For web-only workloads this may go unnoticed; for mail infrastructure it is disqualifying.
This is why reverse DNS belongs on the pre-lease verification list alongside reputation, routing authorization, and renewal terms — points we cover in our broader guide to leasing IP addresses. A structured arrangement, such as those set up through managed IPv4 leasing, should state explicitly how reverse DNS is handled: whether the zone is delegated, how PTR changes are requested, and how quickly they are applied. The same applies when you buy IPv4 addresses: reverse-zone delegation should be part of the transfer completion checklist, not an afterthought discovered when the first mail campaign bounces.
How to Set Up Reverse DNS
Setting up reverse DNS involves getting a PTR record created in the block’s reverse zone and confirming it forward-matches your hostname. The exact steps depend on which control model applies:
Scenario 1: Provider-assigned addresses
- Decide the hostname the IP should identify as (e.g., mail.example.com) and make sure a forward A record already points that hostname at the IP.
- Set the PTR record through the provider’s control panel, or request it via support ticket, quoting the exact IP and hostname.
- Verify after the change propagates (see verification below).
Scenario 2: Your own or delegated leased space
- Confirm the reverse zone for your block is delegated to your nameservers — by the RIR for registered holders, or by the lessor for delegated leases.
- Create the reverse zone (e.g., 113.0.203.in-addr.arpa for 203.0.113.0/24) on your DNS servers if it does not already exist.
- Add PTR records for each address that initiates outbound connections, matching each to a hostname that has a corresponding forward A record.
- Keep forward and reverse records synchronized as part of your change process — every rDNS mismatch starts as a forward-DNS change someone made without updating the PTR.
Verification
Check the result from an external network, not just inside your own:
dig -x 203.0.113.10(ornslookup 203.0.113.10) should return your intended hostname.dig mail.example.com Ashould return the original IP address, confirming FCrDNS.
If the reverse lookup returns nothing, the usual causes are, in order: the PTR record was not created, the reverse zone is not delegated to the nameservers answering for it, or the change has not yet propagated.
Common Reverse DNS Problems
Most reverse DNS problems fall into five patterns, and all five are preventable with a delegation check and a change-management habit.
- No PTR record on a new deployment. The most frequent case: services go live on new IP space before anyone requests PTR records. Harmless for a web server; immediately blocking for a mail server.
- Stale PTR after infrastructure changes. A server moves, forward DNS is updated, the PTR still points at the old name (or the old address still carries the mail hostname). The result is FCrDNS mismatch and gradually degrading deliverability that is hard to trace because “nothing changed” on the mail server itself.
- Generic auto-generated hostnames. The block came with placeholder PTR records in the pattern of dynamic pools. Fine until mail or trust-sensitive services are deployed, at which point the generic names work against you.
- Delegation never completed after a lease or transfer. The commercial side finished — payment, LOA, routing — but the reverse zone still points at the previous holder’s nameservers, which no longer answer for your range. PTR changes silently go nowhere. This belongs on the same completion checklist as routing records, alongside the steps in our guide to avoiding downtime when deploying leased IPv4 blocks.
- Slow change turnaround. The records are correct today, but every change takes a multi-day ticket cycle. Acceptable for static infrastructure; a real constraint for anyone who rotates, scales, or migrates addresses regularly. Turnaround time is a service-quality question to ask before committing, not after.
Practical Checklist Before Deploying Services That Depend on rDNS
- Confirm who controls the reverse zone for your block — provider, your organization, or lessor — and how changes are made.
- Verify delegation is actually in place: query a PTR in your range from an external resolver and confirm the answering nameservers are the intended ones.
- Set deliberate hostnames for every address that initiates outbound connections, especially mail: mail1.example.com, not a generic pool name.
- Confirm FCrDNS for each sending address: PTR → hostname → same IP, checked in both directions.
- Match the mail server’s HELO/EHLO name to the PTR hostname for consistency across the checks receivers run.
- Document the change process and turnaround — for leased space, get the rDNS handling terms in writing before signing.
- Add rDNS to your change management: any forward-DNS or IP change ticket should include a PTR review step.
- Re-verify after any transfer, lease start, or provider migration — delegation is the step most often left dangling.
Practical Note from i.lease
Reverse DNS problems almost never announce themselves as reverse DNS problems. They surface as “our email suddenly goes to spam,” “the new block won’t deliver mail at all,” or “deliverability degraded after the migration and nobody knows why.” By the time the PTR record is identified as the cause, the deployment has usually lost days — and sometimes sender reputation that takes far longer to rebuild.
The pattern we see repeatedly is that rDNS capability was assumed rather than verified. A business acquires or leases a block, confirms routing works, sees websites load, and concludes the space is production-ready — then discovers that the reverse zone was never delegated, or that PTR changes go through a ticket queue measured in days, or that the arrangement does not support custom PTR records at all. For mail infrastructure, each of those is a blocking condition that was knowable before any commitment was made. The questions cost nothing to ask up front: Who controls the reverse zone? Will it be delegated to us? If not, what is the documented turnaround for PTR changes? A block that arrives with clear answers supports mail on day one. A block that arrives without them supports mail eventually, after the least pleasant kind of troubleshooting.
Final Thoughts
Reverse DNS is the mechanism by which IP addresses identify themselves: a PTR record in the block’s reverse zone answers the question “what name does this address claim?”, and forward-confirmation checks whether that claim holds in both directions. What was once a cosmetic detail has hardened into a requirement — mail from addresses without valid, forward-confirmed reverse DNS is now rejected or filtered by the largest mailbox providers, making PTR records as much a part of email infrastructure as SPF, DKIM, and DMARC.
The structural point for businesses is that reverse DNS control follows IP block control. With provider-assigned addresses, you work within the provider’s process. With your own registered space, you run the reverse zone yourself. With leased space, your capability is exactly what the lease arrangement provides — which is why rDNS delegation and PTR turnaround belong on the verification list before acquiring or leasing IPv4, alongside reputation, routing authorization, and renewal terms. Address space that supports your services on paper but cannot identify itself correctly on the wire is not yet production infrastructure; the gap between the two is usually one delegation and a handful of PTR records, set up before they are needed rather than after they are missed.
Frequently Asked Questions
What is a PTR record?
A PTR (pointer) record is the DNS record type that stores a reverse DNS answer. It maps an IP address to a hostname — the opposite direction of an A record — and lives in the IP block’s reverse zone, not in your domain’s DNS zone.
Is reverse DNS required for sending email?
Effectively yes. Major mailbox providers, including Gmail and Outlook, expect sending IP addresses to have valid PTR records that pass forward-confirmation, and mail from addresses without them is commonly rejected or filtered to spam regardless of SPF, DKIM, and DMARC configuration.
How do I check the reverse DNS of an IP address?
Run dig -x followed by the IP address, or nslookup with the IP address, from an external network. The result should return the intended hostname; a forward lookup on that hostname should return the original IP.
Can I set reverse DNS myself?
Only if you control the block’s reverse zone. Registered holders manage it directly through RIR delegation; lessees can manage it if the lessor delegates the zone to them; users of provider-assigned addresses must set PTR records through the provider’s panel or support process.
What is FCrDNS (forward-confirmed reverse DNS)?
FCrDNS is a two-way check: the PTR record for an IP returns a hostname, and a forward lookup on that hostname must return the same IP. Mail servers use this check, not mere PTR existence, to validate a connecting address’s identity.
Does reverse DNS affect IP reputation?
It is one signal among several. A consistent, deliberate PTR record supports a trustworthy profile, while a missing or generic one contributes to a lower-trust assessment. Reverse DNS alone does not create good reputation, but its absence works against you.
Who sets reverse DNS for leased IP addresses?
The block’s registered holder controls the reverse zone, so a lessee’s capability depends on the lease arrangement: the lessor may delegate the zone to the lessee’s nameservers, apply PTR records on request, or in weak arrangements not support reverse DNS at all. This should be confirmed in writing before leasing.
What is a generic PTR record?
A generic PTR is an auto-generated hostname in a pattern like 203-0-113-10.pool.provider.example, typical of dynamically assigned addresses. Mail systems treat generic rDNS as a signal that the address is not deliberate mail infrastructure, so sending addresses should carry custom hostnames instead.
Does reverse DNS work for IPv6?
Yes. IPv6 reverse DNS works on the same principle using the ip6.arpa namespace instead of in-addr.arpa, with PTR records mapping IPv6 addresses to hostnames.
How long do PTR record changes take to apply?
The DNS change itself propagates like any record, typically within minutes to a few hours depending on TTLs. The practical variable is process time: self-managed zones apply changes immediately, while provider or lessor ticket queues can take hours to days — worth confirming before you depend on it.
Also Read
Artículos relacionados

Comprensión de la traducción de direcciones de red (NAT)
En las redes informáticas, gestionar las direcciones IP de forma eficiente es fundamental para garantizar una comunicación fluida entre los dispositivos. Una de las tecnologías clave que ha surgido para afrontar este desafío es la Traducción de Direcciones de Red (NAT, por sus siglas en inglés). En este artículo explicamos qué es NAT, cómo funciona, sus distintos tipos, así como sus ventajas y limitaciones. ¿Qué es la traducción deRead more Related Posts Desbloqueando la privacidad digital con una red privada virtual (VPN) ¿Qué es una VPN? Una red privada virtual (VPN) es una tecnología que permite a los usuarios crear una conexión Comprensión de la traducción de direcciones de red (NAT) En las redes informáticas, gestionar las direcciones IP de forma eficiente es fundamental para garantizar una comunicación fluida entre los ¿Por qué Malasia se está convirtiendo en un centro neurálgico para la infraestructura de nube e IA? Malasia se está convirtiendo en uno de los mercados de crecimiento de centros de datos más importantes del Sudeste Asiático. .related-post {} .related-post .post-list { text-align: left; } .related-post .post-list .item { margin: 5px; padding: 10px; } .related-post .headline { font-size: 18px !important; color: #999999 !important; } .related-post .post-list .item .post_thumb { max-height: 220px; margin: 10px 0px; padding: 0px; display: block; } .related-post .post-list .item .post_title { font-size: 16px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } .related-post .post-list .item .post_excerpt { font-size: 13px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } @media only screen and (min-width: 1024px) { .related-post .post-list .item { width: 30%; } } @media only screen and (min-width: 768px) and (max-width: 1023px) { .related-post .post-list .item { width: 90%; } } @media only screen and (min-width: 0px) and (max-width: 767px) { .related-post .post-list .item { width: 90%; } }

Arrendamiento de direcciones IP: Cómo arrendar direcciones IP
El mundo digital en el que nos movemos hoy depende en gran medida de las direcciones IP, identificadores únicos asignados a los dispositivos conectados a internet o a una red local. A medida que la demanda de direcciones IP sigue aumentando, empresas y particulares exploran diversas opciones para obtener los recursos necesarios. Un método cada vez más popular es el arrendamiento de direcciones IP. Este artículo profundiza en elRead more Related Posts Desbloqueando la privacidad digital con una red privada virtual (VPN) ¿Qué es una VPN? Una red privada virtual (VPN) es una tecnología que permite a los usuarios crear una conexión Comprensión de la traducción de direcciones de red (NAT) En las redes informáticas, gestionar las direcciones IP de forma eficiente es fundamental para garantizar una comunicación fluida entre los ¿Por qué Malasia se está convirtiendo en un centro neurálgico para la infraestructura de nube e IA? Malasia se está convirtiendo en uno de los mercados de crecimiento de centros de datos más importantes del Sudeste Asiático. .related-post {} .related-post .post-list { text-align: left; } .related-post .post-list .item { margin: 5px; padding: 10px; } .related-post .headline { font-size: 18px !important; color: #999999 !important; } .related-post .post-list .item .post_thumb { max-height: 220px; margin: 10px 0px; padding: 0px; display: block; } .related-post .post-list .item .post_title { font-size: 16px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } .related-post .post-list .item .post_excerpt { font-size: 13px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } @media only screen and (min-width: 1024px) { .related-post .post-list .item { width: 30%; } } @media only screen and (min-width: 768px) and (max-width: 1023px) { .related-post .post-list .item { width: 90%; } } @media only screen and (min-width: 0px) and (max-width: 767px) { .related-post .post-list .item { width: 90%; } }

¿Qué es el agotamiento de direcciones IPv4?
IPv4 es la versión inicial del Protocolo de Internet (IP), capaz de generar 4.300 millones de posibles direcciones IPv4. Sin embargo, muchas de estas direcciones están reservadas para fines específicos, como investigación y desarrollo. Esto deja un conjunto limitado disponible para organizaciones e individuos en todo el mundo. Con el crecimiento exponencial de Internet, la demanda de direcciones IPv4 se ha disparado. Esto provocó una rápida disminución de lasRead more Related Posts Desbloqueando la privacidad digital con una red privada virtual (VPN) ¿Qué es una VPN? Una red privada virtual (VPN) es una tecnología que permite a los usuarios crear una conexión Comprensión de la traducción de direcciones de red (NAT) En las redes informáticas, gestionar las direcciones IP de forma eficiente es fundamental para garantizar una comunicación fluida entre los Arrendamiento de direcciones IP: Cómo arrendar direcciones IP El mundo digital en el que nos movemos hoy depende en gran medida de las direcciones IP, identificadores únicos asignados .related-post {} .related-post .post-list { text-align: left; } .related-post .post-list .item { margin: 5px; padding: 10px; } .related-post .headline { font-size: 18px !important; color: #999999 !important; } .related-post .post-list .item .post_thumb { max-height: 220px; margin: 10px 0px; padding: 0px; display: block; } .related-post .post-list .item .post_title { font-size: 16px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } .related-post .post-list .item .post_excerpt { font-size: 13px; color: #3f3f3f; margin: 10px 0px; padding: 0px; display: block; text-decoration: none; } @media only screen and (min-width: 1024px) { .related-post .post-list .item { width: 30%; } } @media only screen and (min-width: 768px) and (max-width: 1023px) { .related-post .post-list .item { width: 90%; } } @media only screen and (min-width: 0px) and (max-width: 767px) { .related-post .post-list .item { width: 90%; } }