Kamran Mushtaq
Back to Hosting & Deployment
Hosting & Deployment

Nameserver

Added: June 25, 2026

Definition

A Nameserver is a server that stores and provides a domain's DNS records (A, AAAA, CNAME, MX, etc.). When someone wants to visit a domain, the nameserver answers DNS queries and tells the internet where that domain's website, email, or other services are located.

What Problem It Solves

A domain registrar (e.g., Hostinger) only registers the domain name. The nameserver provides the actual DNS information that maps the domain to services such as web hosting, Vercel deployments, email servers, and APIs.

What Happens If Not Used

Without nameservers:

  • DNS records cannot be found.
  • Browsers cannot discover the website's IP address or destination.
  • Email delivery fails.
  • The domain exists but is effectively unusable on the internet.

Easy Wording

A nameserver is the source of truth for a domain's DNS records. When someone asks, "Where should I go for website.com?", the nameserver provides the answer.

Layman Example

You own a shop and register its name. That registration doesn't tell customers where the shop is located. A nameserver is like the information desk that tells customers the shop's address.

Technical Example

  • Domain registered with Hostinger: website.com
  • Nameservers:
  • ns1.vercel-dns.com
  • ns2.vercel-dns.com
  • DNS record stored on the nameserver:

website.com → 76.76.21.21

  • User visits website.com.
  • DNS resolver asks the nameserver for the domain's DNS records.
  • The nameserver returns the Vercel destination.
  • The browser connects to Vercel and loads the website. In short: Domain = Name, DNS = Lookup System, Nameserver = Server that stores and answers DNS record requests.