A Record
A DNS record that maps a domain name to an IPv4 address.
A records are the most common DNS record type. When you type a domain in your browser, the DNS system returns the A record to find the server's IP address. A domain can have multiple A records for load balancing.
Exampleexample.com A 93.184.216.34
AAAA Record
A DNS record that maps a domain name to an IPv6 address.
AAAA records serve the same purpose as A records but for IPv6 addresses. As IPv6 adoption grows, having AAAA records ensures your domain is accessible to IPv6-only clients.
Exampleexample.com AAAA 2606:2800:220:1:248:1893:25c8:1946
MX Record
A DNS record that specifies mail servers responsible for receiving email for a domain.
MX records include a priority value (lower = higher priority). Email clients query MX records to determine where to deliver mail. Multiple MX records provide redundancy if the primary server is unavailable.
Exampleexample.com MX 10 mail.example.com
TXT Record
A DNS record that holds arbitrary text data, commonly used for domain verification and email authentication.
TXT records store SPF policies, DKIM public keys, DMARC configurations, and domain verification tokens. They're the most versatile DNS record type, used whenever text data needs to be associated with a domain.
Exampleexample.com TXT "v=spf1 include:_spf.google.com ~all"
CNAME Record
A DNS record that creates an alias from one domain name to another.
CNAME records point one domain to another instead of an IP address. Useful for subdomains that should resolve to the same destination as another domain. Cannot coexist with other record types for the same name.
Examplewww.example.com CNAME example.com
NS Record
A DNS record that identifies the authoritative nameservers for a domain.
NS records delegate DNS authority to specific nameservers. When you change DNS providers, you update NS records at your registrar to point to the new provider's nameservers.
Exampleexample.com NS ns1.dnshost.com
SOA Record
Start of Authority record containing administrative information about a DNS zone.
SOA records specify the primary nameserver, administrator email, zone serial number, and timing parameters. Every DNS zone has exactly one SOA record. Serial numbers increment when zone data changes.
Exampleexample.com SOA ns1.example.com admin.example.com 2024010101 3600 600 604800 86400