Inputs

IPv4 or IPv6.

What reverse DNS is for

"Forward" DNS converts a name to an IP (myipcat.com β†’ 104.21.51.82). Reverse DNS does the opposite β€” given an IP, it returns the hostname (if one is set). Reverse DNS uses PTR records published in the in-addr.arpa (IPv4) or ip6.arpa (IPv6) zones.

Where PTR records actually matter

  • Email deliverability β€” receiving mail servers reject (or score as spam) email from sending IPs without matching PTR/forward records. If you run your own mail server, set up PTR or your mail goes nowhere.
  • Log analysis β€” server logs are full of IPs. PTR lookups make them human-readable: 52.85.132.45 becomes server-52-85-132-45.bos2.cloudfront.net.
  • SSH brute-force detection β€” sketchy login attempts often come from IPs with weird or missing PTR records.
  • IP reputation β€” many reputation services use PTR records as a signal.

Who controls the PTR record?

The PTR record is controlled by whoever owns the IP block β€” typically your ISP or hosting provider, not you. To get a custom PTR (e.g. mail.example.com), you submit a request to your provider. Some self-service providers (AWS, OVH, Hetzner, Vultr) let you set it via their dashboard.

"No PTR record" is normal

Most residential IPs have either no PTR record or a generic one provided by the ISP (like cpe-104-31-22-15.nyc.res.rr.com). This is fine for normal home use. PTR records mostly matter for servers, not clients.