DNS record types reference
A searchable reference of the DNS record types you work with most, from A and AAAA to CNAME, MX, TXT, NS, SOA, CAA, SRV and the DNSSEC records. It is for developers and site owners setting up domains, email and certificates who need to pick the right record quickly.
How it works
DNS translates human-friendly names into the addresses and metadata that make the internet work, and each record type does a specific job. Type a record type or keyword — for example CNAME, mail or dnssec — and the list filters instantly by type name, full name or description. Each entry shows a plain-English meaning and a sample zone-file line you can adapt. The reference is static and runs entirely in your browser.
Quick reference
| Type | Purpose | Example data |
|---|---|---|
| A | Hostname → IPv4 address | 93.184.216.34 |
| AAAA | Hostname → IPv6 address | 2606:2800:220:1::1946 |
| CNAME | Alias one name to another | example.com. |
| MX | Mail server + priority | 10 mail.example.com. |
| TXT | Free text (SPF, DKIM, verification) | “v=spf1 ~all” |
| NS | Delegate zone to name servers | ns1.example.com. |
| SOA | Zone metadata and timers | ns1… admin… serial… |
| CAA | Allowed certificate authorities | 0 issue “letsencrypt.org” |
Example
Searching for mail surfaces the MX record, which names a domain’s mail servers with a priority value (lower is preferred). A typical line looks like:
example.com. MX 10 mail.example.com.
Everything runs in your browser — nothing is uploaded.