DNS Explained Simply
22/07/2026
Every time you type a website address, something happens in the background that most site owners never see: a DNS query. DNS (Domain Name System) is the internet''s phone book — it translates names humans remember (yourcompany.com) into IP addresses computers understand (like 185.119.90.10). Without DNS, you''d be memorizing numbers instead of names.
What a DNS lookup looks like
When a visitor types your domain, their device asks a DNS resolver (usually at their ISP): "What''s the address for this domain?" If the resolver doesn''t have a cached answer, it asks in sequence: the root servers, then the servers responsible for the .com zone, and finally your domain''s nameservers — which give the definitive answer. The whole chain takes tens of milliseconds and gets cached, so the next lookup is much faster.
The records you should know
- A record — points the domain to a server''s IP address. This is your site''s "main" record.
- CNAME — an alias: says www.yourcompany.com is the same as yourcompany.com.
- MX — defines which server receives your email. A wrong MX means mail stops arriving.
- TXT — text records, most commonly for SPF, DKIM and DMARC (so your emails don''t land in spam) and for verifications (Google Search Console and the like).
- NS — nameservers: they determine who manages your domain''s DNS zone at all.
Why changes "take 24–48 hours"
Because of caching. Every DNS record has a TTL (Time To Live) — how long resolvers may remember the answer. With a 24-hour TTL, some visitors will still see the old address a day after the change. Practical tip: before migrating a site, lower the TTL to 300 seconds (5 minutes) at least a day in advance, make the change, then raise it again. That way "propagation" takes minutes instead of two days.
The most common DNS mistakes
First: switching hosts without updating the A record — the site keeps pointing at the old server. Second: forgetting the MX record during a migration, so the site works but mail stops. Third: duplicate or contradictory records causing unpredictable behavior. Fourth: nameservers changed at the registrar while the zone at the new provider is empty — the domain then simply "doesn''t exist". With us, the DNS zone is set up automatically with every hosting plan, and support helps migrate records from your old provider.
DNS and site speed
The DNS lookup is the first step of every page load and feeds into TTFB. Slow nameservers add 50–200 ms before anything happens. That''s why serious providers run DNS from multiple locations (anycast) — queries resolve at the server nearest the visitor. If you''re building a site where speed and SEO matter, DNS is one small thing worth checking once and then forgetting.