Every time you type a web address like google.com, your computer needs to find the actual IP address behind it. That's the job of the Domain Name System (DNS).

DNS as the Internet's Phone Book

Think of DNS like a phone book:

  • Domain name = person's name
  • IP address = phone number
  • DNS server = the phone book

Instead of memorizing 142.250.185.46, you just type google.com. DNS does the lookup for you.

How Does a DNS Query Work?

  1. Local cache: Your device checks if it already knows the IP from a recent visit.
  2. Recursive resolver: If not cached, your device asks a DNS resolver (usually your ISP's or a public one like 1.1.1.1).
  3. Root nameserver: The resolver asks a root server, which handles top-level domains (.com, .org, .de).
  4. TLD nameserver: The .com server points to the authoritative nameserver for google.com.
  5. Authoritative nameserver: Returns the actual IP address.
  6. Your browser connects to that IP and loads the page.

This entire process typically takes under 50 milliseconds.

DNS Record Types

  • A – Maps a domain to an IPv4 address
  • AAAA – Maps a domain to an IPv6 address
  • MX – Mail exchange server for the domain
  • CNAME – Alias (e.g. www → example.com)
  • NS – Authoritative nameservers for the domain
  • TXT – Text records (SPF, domain verification, etc.)

You can query all these record types with our DNS lookup tool.

Public DNS Servers

You can replace your ISP's default DNS with faster, more private alternatives:

  • Cloudflare (1.1.1.1) – Fastest, privacy-focused, no logs
  • Google (8.8.8.8) – Reliable and fast
  • Quad9 (9.9.9.9) – Blocks known malware domains

Conclusion

DNS is one of the most fundamental technologies powering the internet. Without it, you'd need to memorize IP addresses. Use our DNS checker to inspect any domain's DNS records.