March 2, 2025
A (Address Record) - Maps a domain to an IPv4 address.
example.com. IN A 93.184.216.34
AAAA (IPv6 Address Record) - Maps a domain to an IPv6 address.
example.com. IN AAAA 2606:2800:220:1:248:1893:25c8:1946
CNAME (Canonical Name Record) - Aliases one domain to another (i.e., maps a subdomain to a primary domain).
www.example.com. IN CNAME example.com.
MX (Mail Exchange Record) - Specifies mail servers for a domain.
example.com. IN MX 10 mail1.example.com.
SOA (Start of Authority Record) - Contains administrative information about the domain.
example.com. IN SOA ns1.example.com admin.example.com
PTR (Pointer Record) - Reverse DNS lookup (maps an IP address back to a domain).
34.216.184.93.in-addr.arpa. IN PTR example.com.
TXT (Text Record) - Stores text-based information, often for security and verification.
example.com. IN TXT "v=spf1 include:_spf.google.com ~all"
NS (Name Server Record) - Specifies authoritative name servers for a domain.
example.com. IN NS ns1.exampledns.com.
SRV (Service Record) - Specifies services and their locations (used for VoIP, SIP, LDAP).
_sip._tcp.example.com. IN SRV 10 60 5060 sipserver.example.com.
CAA (Certificate Authority Authorization Record) - Specifies which Certificate Authorities (CAs) can issue SSL/TLS certificates.
example.com. IN CAA 0 issue "letsencrypt.org"
SPF (Sender Policy Framework Record) - Specifies authorized mail servers for a domain.
example.com. IN TXT "v=spf1 ip4:192.168.0.1/16 -all"
NAPTR (Naming Authority Pointer Record) - Used for advanced redirection and service discovery (e.g., VoIP).
example.com. IN NAPTR 100 10 "u" "E2U+sip" "!^.*$!sip:info@example.com!" .
✅ Core Records: A, AAAA, CNAME, MX, SOA, PTR, TXT, NS ✅ Specialized Records: SRV, CAA, SPF, NAPTR ✅ Security Use: CAA, SPF, TXT (DKIM, DMARC) ✅ Email Handling: MX, SPF, PTR
Check out the link to my original notes below. It was important to me to break down and understand the examples of each record.
Questions are randomized each round.
There are a total of 17 questions for this quiz.