• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • VCS
  • Interview Questions
  • Database
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

Understanding DNS zone files

by admin

What are DNS zone files

Information about domains in the DNS database is stored in zone files. A zone file consists of directives and resource records. Directives tell the nameserver to perform tasks or apply special settings to the zone. Resource records define the parameters of the zone and store host information. Directives are optional, but resource records are required.

Resource record fields

A resource record has the following fields (some fields are optional, depending on the Type):

  • Name: The domain name or IP address
  • TTL: Time to live, maximum time a record is cached before checking for a newer one
  • Class: Always IN for Internet
  • Type: Record type
  • Data: Varies with record type

Most commonly used DNS resource record types

More than 30 types of resource records exist. The more common ones are:

  • A: IPv4 address
  • CNAME: Canonical name or alias
  • MX: Mail exchange, specifies the destination for mail addressed to the domain
  • NS: Nameserver, specifies the system that provides DNS records for the domain
  • PTR: Maps an IP address to a domain name for reverse name resolution
  • SOA: Start of authority, designates the start of a zone

The following is an example of a zone file /etc/named.conf:

$TTL 86400      ; 1 day
    example.com IN SOA dns.example.com. root@example.com. (
                       57         ; serial
                       28800      ; refresh (8 hours)
                       7200       ; retry (2 hours)
                       2419200    ; expire (4 weeks)
                       86400      ; minimum (1 day)
                       )
                IN NS dns.example.com.
    dns           IN         A        192.0.2.1       
	example.com   IN         A        192.0.2.1
	host01        IN         A        192.0.2.101
	host02        IN         A        192.0.2.102
	host03        IN         A        192.0.2.103

The $TTL entry is a directive that defines the default time to live for all resource records in the zone. Each resource record can have a TTL value, which overrides this global directive.

The next line in the example is the SOA record. All zone files must have one SOA record. The following information is included in the SOA record:

  • example.com: The name of the domain
  • dns.example.com.: The FQDN of the nameserver
  • root@example.com.: The email address of the user who is responsible for the zone
  • serial: A numerical value that is incremented each time the zone file is altered to indicate when it is time for the named service to reload the zone
  • refresh: The elapsed time after which the primary nameserver notifies secondary nameservers to refresh their database
  • retry: The time to wait after which a refresh fails before trying to refresh again
  • expire: The time after which the zone is no longer authoritative and the root nameservers must be queried
  • minimum: The amount of that time that other nameservers cache the zone’s information.

The NS (Nameserver) record announces authoritative nameservers for a particular zone by
using the format:

IN NS dns.example.com.

The A (Address) records specify the IP address to be assigned to a name by using the format:

hostname IN A IP-address

Filed Under: CentOS/RHEL 6, CentOS/RHEL 7, Linux

Some more articles you might also be interested in …

  1. CentOS / RHEL 7 : How to configure cache-only nameserver
  2. Linux OS Service ‘syslog’
  3. dolt add: Add the contents of a table to the list of Dolt staged tables
  4. How to split iso or file using ‘split’ command in Linux
  5. How to use ldconfig Command in Linux
  6. RHEL 7 – RHCSA Notes – Set enforcing and permissive modes for SELinux
  7. CentOS / RHEL 7 : GRUB2 configuration file /boot/grub2/grub.cfg explained
  8. fallocate Command Examples in Linux
  9. What are the mount options to improve ext4 filesystem performance in Linux
  10. dunstify Command Examples in Linux

You May Also Like

Primary Sidebar

Recent Posts

  • gml2gv Command Examples
  • glow Command Examples
  • glib-compile-resources Command Examples
  • glances Command Examples

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright