DNS Basics • Last Updated 3rd April 2026 3 min read

What is a PTR record?

Learn what PTR records are, how reverse DNS works, and why accurate PTR validation matters for mail delivery, logging, and network trust.

Tools For This Topic

What a PTR record does

A PTR (Pointer) record is used for reverse DNS. Instead of mapping a hostname to an IP address, it maps an IP address back to a hostname.

PTR records are most commonly used in mail systems, where receiving servers check reverse DNS as part of trust and reputation evaluation.

Unlike most DNS records, PTR records are not configured in your standard zone file but are controlled by whoever owns the IP address space (typically your hosting provider or ISP).

What reverse DNS looks like

Reverse DNS uses a special namespace to map IP addresses back to hostnames.

10.113.0.203.in-addr.arpa. IN PTR mail.example.com.

This example shows the IPv4 address 203.0.113.10 represented in reverse order under the in-addr.arpa domain.

When queried, this PTR record returns mail.example.com as the associated hostname.

Why PTR matters for email

Many receiving mail systems perform reverse DNS checks on the sending IP address as part of their filtering and trust logic.

If no PTR record exists, or if it appears generic or inconsistent, the message may be treated as suspicious or rejected.

A well-configured mail server typically has a PTR record that points to a meaningful hostname associated with the domain.

Forward-confirmed reverse DNS (FCrDNS)

A stronger validation pattern is forward-confirmed reverse DNS (FCrDNS). This checks that the PTR target hostname resolves back to the original IP address.

  • PTR lookup returns a hostname (reverse lookup)
  • Hostname resolves via A or AAAA records (forward lookup)
  • Forward result includes the original IP address

This bidirectional consistency is often used as a signal of legitimacy for mail servers.

What to validate

  • Whether the IP address has a PTR record
  • Whether the PTR hostname is meaningful and not generic
  • Whether the PTR hostname resolves via forward DNS
  • Whether the forward lookup includes the original IP address
  • Whether the hostname aligns with the sending domain

Common problems

  • No PTR record configured for the sending IP
  • PTR hostname does not resolve via A or AAAA records
  • Forward lookup resolves to a different IP
  • Generic ISP-style PTR names used for business mail
  • Mismatch between PTR hostname and sending domain identity

Who controls PTR records

PTR records are managed by the organisation that controls the IP address range, not by the domain owner.

In most cases, this means your cloud provider, hosting provider, or ISP must configure or delegate reverse DNS on your behalf.

This is an important distinction when troubleshooting, as updating your domain's DNS zone alone will not affect PTR records.

Use These DNS Pro Tools

If you want to validate this topic in practice, these DNS Pro tools are the fastest next step.

Related Tools

Related Articles