Part ONE What is a Start of Authority (SOA) Record and What Does it Do? The first resource record in any Domain Name System (DNS) zone file is the Start of Authority (SOA) resource record. The SOA resource record is an essential part of the DNS zone file, it indicates the basic properties of the domain name server and the zone that the domain is in. Each zone file can contain only one SOA record. The SOA record is broken down into the following fields. (Please refer to the example below: each section is color-coded to match it’s corresponding field definition) ;; QUESTION SECTION: ;no-ip.com. IN SOA
;; ANSWER SECTION: no-ip.com. 565 IN SOA ns2.no-ip.com. hostmaster.no-ip.com. 2036909809 600 300 604800 600
- name- The root name of the zone.
- TTL- Time-to-Live, is the length of time for when a zone file is set to expire. This is usually expressed in a number of seconds.
- class- Defines the class of record. IN stands for the Internet.
- name-server: The Name of the primary name server for the zone
- email-addr: The E-mail Address of the individual who is in charge of the domain. This is the person that emails should be directed to in order to report errors or problems with the domain.
- sn = serial number: The Serial Number for the zone. This number helps keep track of changes that have been made to the DNS zone file. The number has to increment when changes are made. The standard convention is YYYYMMDDnn, where YYYYMMDD is the date of revision and nn is the revision number (in case there are multiple revisions for the day). So, today’s first revision would be 2011030200 and the second would be 2011030201.
- refresh: The time a secondary DNS server waits before checking to see if there are changes to the zone.
- retry: The time the secondary DNS server should wait before retrying to check if there have been changes to the zone (if the first refresh fails).
- expiry: The time in seconds before the secondary DNS server should stop responding to queries for the zone.
- min=minimum: The minimum time-to-live (TTL). This value is supplied in query responses by servers for the zone to inform others how long they should cache a resource record provided in an answer.
A properly optimized and updated SOA record can reduce bandwidth between name servers, increase the speed of website access and ensure the site is live, even when the primary DNS server is down. Please leave any questions or comments below… Check out Part 2 and Part 3 of this series:
Part Two: What are NS Records and Why Are They Important to DNS
Anatomy of a DNS Zone File Part Three: MX Records