PTR Record Lookup performs reverse DNS, finding the hostname an IP address claims as its name. It is the mirror image of an A record and it matters most for email: receiving mail servers routinely check that a sending IP has a PTR record, and that the hostname it returns resolves back to the same address. Mail from an IP with no reverse DNS, or with a generic hostname supplied by a hosting provider, is far more likely to be rejected or filtered regardless of how well SPF and DKIM are configured. The lookup uses a special naming scheme rather than the address itself: the IPv4 octets are reversed and placed under in-addr.arpa, so 8.8.4.4 is queried as 4.4.8.8.in-addr.arpa. IPv6 uses nibble-reversed notation under ip6.arpa. Because reverse zones are delegated to whoever controls the address block, you usually cannot set a PTR record at your DNS provider. It has to be set by your hosting company or ISP, which is the part that surprises people most often. Pair this with SPF Record Checker when diagnosing delivery problems.
DNS resolution happens in multiple stages. When you type a domain name, your browser first checks its own cache, then the OS resolver cache, then queries your configured DNS resolver (usually your ISP or a public resolver like 8.8.8.8 or 1.1.1.1). If none have the record cached, the resolver performs a recursive query: it asks the root name servers for the TLD servers (.com, .net, etc.), then asks the TLD servers for the authoritative name servers of the specific domain, and finally asks the authoritative servers for the actual record. This entire process typically completes in under 100ms. DNS-over-HTTPS (DoH) encrypts DNS queries in HTTPS traffic, preventing ISPs and network observers from seeing which domains you query. It was standardized in RFC 8484 in 2018 and is now supported by all major browsers. Google and Cloudflare both operate free public DoH endpoints (dns.google and cloudflare-dns.com). TXT records have become a critical security mechanism: SPF (Sender Policy Framework) records specify which servers are allowed to send email for a domain, DKIM (DomainKeys Identified Mail) records provide public keys for verifying email signatures, and DMARC records tell receiving mail servers what to do when SPF or DKIM checks fail. Checking these records is the first step in diagnosing email deliverability problems.