Glossary · DNS
DNS: definition, explanation, and why it matters
The Domain Name System — the internet's address book, translating human-readable domain names into the IP addresses computers use to route traffic.
Definition
The Domain Name System — the internet's address book, translating human-readable domain names into the IP addresses computers use to route traffic.
Plain-English explanation
Every device on the internet is reached by an IP address — a string of numbers like 142.250.190.46. DNS is the distributed directory that lets you type techutilitytools.com instead of memorizing the number.
When you visit a site, your device asks a DNS resolver (typically your ISP's, or a public one like 1.1.1.1 or 8.8.8.8) for the IP. The resolver walks a global hierarchy — root servers, top-level-domain servers, and the domain's authoritative server — and returns the answer, which is then cached for performance.
Real-world examples
- Typing 'gmail.com' triggers a DNS lookup that returns Google's mail-server IPs before any email loads.
- Switching from your ISP's DNS to a public resolver can reduce lookup times from 60 ms to under 10 ms in many regions.
Why it matters
DNS sits in front of every web request. A slow resolver makes every site feel slow — and a misconfigured one makes sites appear 'down' even when they're fine.
Many ISP outages start as DNS failures rather than transit failures, which is why 'change your DNS' is the first fix in countless troubleshooting guides.
Common misconceptions
- Myth: Changing DNS makes downloads faster.
Reality: DNS only affects lookup time — the few milliseconds at the start of a connection. It does not change the bandwidth of the connection itself.
Frequently asked questions
- What's a good public DNS?
- Cloudflare (1.1.1.1), Google (8.8.8.8), and Quad9 (9.9.9.9) are all fast, reliable, and privacy-respecting.
- Is DNS encrypted by default?
- Traditionally no — DNS travels in cleartext. DNS over HTTPS (DoH) and DNS over TLS (DoT) encrypt lookups and are now widely supported.