Docs / DNS & Domains / Understanding DNS Record Types

Understanding DNS Record Types

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 396 views · 1 min read

DNS records tell the internet where to find your services. Here are the most common types.

A Record

Maps a domain to an IPv4 address.

example.com  A  198.48.63.241

AAAA Record

Maps a domain to an IPv6 address.

CNAME Record

Creates an alias pointing to another domain.

www.example.com  CNAME  example.com

MX Record

Specifies the mail server for your domain.

example.com  MX  10 mail.example.com

TXT Record

Stores text data for verification, SPF, DKIM, etc.

NS Record

Specifies the nameservers for your domain.

TTL

Time-To-Live — how long DNS resolvers cache the record. Lower TTL = faster propagation of changes, but more DNS queries.

Was this article helpful?