Skip to main content

DNS

DNS, the Domain Name System, is the system that translates a human-readable domain name — like www.host-tracker.com — into the numeric IP address a browser or server actually needs to make a connection. Without DNS, you would have to remember and type an IP address for every site you wanted to visit.

How DNS resolution works

DNS resolution happens through a hierarchy of servers, each responsible for a slice of the namespace and able to delegate further down the chain. Take www.host-tracker.com as an example: a resolver first asks a root server, which points it to the server responsible for the .com top-level domain; the .com server then points it to host-tracker.com's authoritative nameserver, which finally returns the actual IP address for www.host-tracker.com. This root → TLD → authoritative-nameserver walk happens in a fraction of a second, usually invisibly, every time you load a page. If no record exists on the DNS server for the name you requested, you get a resolution failure — technically called NXDOMAIN, shown to end users as something like "server not found" or "this site can't be reached."

Common DNS record types

  • A — maps a domain to an IPv4 address; a wrong or deleted A record is the most common single point of failure and can take the whole site down
  • AAAA — the same mapping for an IPv6 address
  • CNAME — aliases one hostname to another (for example, www to the root domain)
  • MX — routes email to the right mail servers, with priority order
  • TXT — holds text data such as SPF/DKIM email authentication and domain-ownership verification
  • NS — names the authoritative servers for the domain; wrong NS records can make the entire domain unreachable, not just one record

DNS caching and propagation

Each DNS record carries a TTL (time-to-live) that tells resolvers how long to cache the answer before checking again. That caching is what makes browsing fast, but it also means a DNS change — a new A record after a server migration, for instance — does not appear everywhere at once. Propagation across the internet's resolvers usually completes within a couple of hours but can take up to 48 hours in some cases, which is why a freshly changed domain can seem to work for some visitors and not others.

Why DNS matters for monitoring

DNS is a common monitoring blind spot: a server can be perfectly healthy while an expired, misconfigured, or accidentally deleted DNS record makes the site unreachable anyway. Because changes propagate gradually, a DNS-related outage can also appear in only some regions first, which is exactly why checks from multiple global locations catch problems a single local check would miss. DNS blacklisting — where a domain or IP gets flagged by spam or security lists — is a related, separately monitored failure mode that can silently break email delivery or trigger browser warnings even while the site itself loads fine.

How HostTracker checks DNS

Run a free lookup with the DNS query tool to see a domain's current records from multiple locations, or set up ongoing DNS blacklist monitoring to catch both resolution failures and blacklisting incidents automatically. See the DNS blacklist check guide for a deeper walkthrough.

See also

Learn more
Related tool →

Related tools and features