Domain Name Service  «Prev 

Zone File Format

The Zone File Format is a standardized method for defining and storing domain name system (DNS) records within a DNS zone. It plays a crucial role in the overall functionality of the Internet, as it helps translate human-readable domain names into IP addresses that computers can understand. The Zone File Format consists of several key elements, including:
  1. Start of Authority (SOA) Record: The SOA record is the first entry in a zone file, and it holds essential information about the zone. It contains the primary name server for the domain, the email address of the administrator responsible for the domain, and various timing parameters for zone transfers and caching.
  2. Name Server (NS) Records: NS records specify the authoritative DNS servers responsible for a domain. These records delegate the responsibility of answering queries for the domain to one or more name servers, ensuring that the DNS system can find the necessary information.
  3. Address (A) Records: A records map domain names to IPv4 addresses, allowing users to access websites and other resources using human-readable domain names instead of numerical IP addresses.
  4. IPv6 Address (AAAA) Records: Similar to A records, AAAA records map domain names to IPv6 addresses. They facilitate the transition to the newer IPv6 addressing system, which expands the available IP address space.
  5. Canonical Name (CNAME) Records: CNAME records create aliases for domain names, allowing multiple domain names to point to the same IP address. This is useful for simplifying domain management and enabling the use of multiple domain names for a single website or service.
  6. Mail Exchange (MX) Records: MX records are used to specify the mail servers responsible for handling email for a domain. They include a priority value, which determines the order in which mail servers should be contacted to deliver email.
  7. Text (TXT) Records: TXT records hold arbitrary text information related to a domain. They are often used for verifying domain ownership, implementing email security measures like SPF and DKIM, and providing additional information about a domain.
  8. Service (SRV) Records: SRV records enable the discovery of services and their associated servers within a domain. They contain information about the service type, protocol, priority, weight, port number, and target host, helping clients locate and connect to services.
  9. Pointer (PTR) Records: PTR records are used for reverse DNS lookups, mapping IP addresses back to domain names. This can be useful for verifying the authenticity of an IP address, identifying the domain associated with an IP address, and performing diagnostics.
  10. DNSSEC Records: DNSSEC (DNS Security Extensions) is a suite of extensions that add security to the DNS protocol. Records such as DNSKEY, RRSIG, NSEC, and DS are used to secure and authenticate DNS data, preventing attacks like DNS spoofing or cache poisoning.

These elements work together to form the foundation of the DNS system, enabling the efficient and reliable resolution of domain names to IP addresses and facilitating various Internet services.
Zone File Format
Zone File Format
  1. The key to be looked up
  2. Internet
  3. Type of Resource Record
  4. Result of the lookup
  5. The key is blank, so the previous key is used
  6. All the key values in the left column are relative to corporation.com

Domain Name System Zone File

A Domain Name System (DNS) zone file is a text file that describes a DNS zone. A DNS zone is a subset, often a single domain, of the hierarchical domain name structure of the DNS. The zone file contains mappings between domain names and IP addresses and other resources, organized in the form of text representations of resource records (RR). A zone file may be either a DNS master file, authoritatively describing a zone, or it may be used to list the contents of a DNS cache.
The format of a zone file is defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1).
This format was originally used by the Berkeley Internet Name Domain (BIND) software package, but has been widely adopted by other DNS server software - though some of them (e.g. NSD, PowerDNS) are using the zone files only as a starting point to compile them into database format.
A zone file is a sequence of entries for resource records. Each line is a text description that defines a single resource record (RR). The description consists of several fields separated by white space (spaces or tabs). The first field is the domain name, called the owner of the record, but if left blank, defaults to the owner of the previous record.
The domain name is followed by the
  1. time to live field,
  2. the record class,
  3. the record type, and
  4. one or possibly several fields of type-specific data.

The time-to-live field specifies the time after which a domain name client must discard the record and perform a new resolution operation to obtain fresh information. The record class indicates the namespace of the record's information. The most commonly used namespace is that of the Internet, indicated by parameter IN. The type of the resource record is a short abbreviation for the type of information stored in the record and determines the number of parameters needed. The type also provides the name of each record. For example, an address record, having the abbreviation A for IPv4 and AAAA for IPv6, maps the domain name in the first field to an IP address in the fourth field, and a mail exchanger record (type MX) specifies the Simple Mail Transfer Protocol (SMTP) mail host for a domain.
Resource records may occur in any order in a zone file. For formatting convenience, resource records may span several lines by enclosing in parentheses a set of parameters that spans several lines, but belongs to the same record. The file may contain comment text by preceding such text with a semicolon, either at the beginning of a line, or after the last field on any line, or on a blank line.
Comments end at the end of a line. The zone file may contain any number of blank lines with or without comments.
The zone file may also contain various directives that are marked with a keyword starting with the dollar sign character. The most notable is the $ORIGIN keyword, which specifies the starting point for the zone in the DNS hierarchy.
If this keyword is omitted from a zone file, the origin is inferred by the server software from the reference to the zone file in its server configuration.