DNS REFERENCE
What is an SOA Record?
The administrative hub of the Domain Name System, declaring vital replication timers and contact information for a domain zone.
Understanding the Start of Authority (SOA) Record
An SOA Record (short for "Start of Authority") is a mandatory record that must exist at the very beginning of every DNS zone file. It marks the start of the zone and identifies the global administrative properties of the domain.
While records like A and MX deal with direct user routing, the SOA record is designed for communication between DNS servers. It tells secondary (backup) nameservers how frequently they should sync their databases with the primary master nameserver, how to handle sync failures, and who to contact in case of administrative problems.
A domain can have multiple NS records, but it must have **exactly one** SOA record.
Structure of an SOA Record
An SOA record contains a specific sequence of seven variables. Here is how they map inside a DNS query:
2026102401 ; Serial number (YYYYMMDDNN)
7200 ; Refresh interval (2 hours)
3600 ; Retry interval (1 hour)
1209600 ; Expire limit (2 weeks)
3600 ; Minimum TTL / Negative cache (1 hour)
)
Query an SOA Record in Real Time
Enter a domain below to resolve and read its administrative SOA details:
KEY FACTS
Primary Use
Replicating zone files and caching negative lookup responses
Requirements
Exactly one record per DNS zone file
Output Value
Space-separated list of administrative parameters
OTHER DNS EXPLANATIONS