fbpx
Wikipedia

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.[1]

DNS Zone File
Filename extension
.zone
Internet media type
text/dns
Developed byISI
Initial release1987; 36 years ago (1987)
Type of formatFile format
StandardsRFC 1034, 1035, 2308, 4027
Open format?Yes

File format edit

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, see also Microsoft DNS with Active Directory-database integration.

A zone file is a sequence of line-oriented entries, each of which is either a directive or a text description that defines a single resource record (RR). An entry is composed of fields separated by any combination of white space (tabs and spaces), and ends at a line boundary except inside a quoted string field value or a pair of enclosing formatting parentheses. Any line may end with comment text preceded by a semicolon, and the file may also contain any number of blank lines.

Entries may occur in any order in a zone file, with some exceptions.

Directives are control entries that affect the rest of the zone file. The first field of a directive consists of a dollar sign followed by a keyword:

  • $ORIGIN is followed by a domain name to be used as the origin for subsequent relative domain names.
  • $INCLUDE is followed by a file name and optional origin domain name to be used when interpreting its contents (which are treated as if they appeared in the parent file, followed by a reset to the origin value preceding evaluation of the directive).
  • $TTL, defined in RFC 2308 (section 4), is followed by a number to be used as the default TTL (time-to-live).
  • $GENERATE, a non-standard extension accepted by BIND and some other name server software to insert multiple resource records with one entry, is followed by a concise representation of an increasing sequence of nonnegative numbers and then a template RR entry. A resource record is added for each number in the sequence, using the template with unescaped "$" characters replaced by the number.

A resource record entry consists of several fields as follows (both field orderings are acceptable and may be used interchangeably):

name ttl record class record type record data
name record class ttl record type record data

The name field may be left blank. If so, the record inherits the field from the previous record. A free standing @ is used to denote the current origin.

The ttl field specifies the number of seconds after which a caching client must discard the record and perform a new resolution operation to obtain fresh information. Some name servers, including BIND, allow nonstandard representations that use time unit abbreviations (for example, "2d" meaning two 24-hour days or "1h30m" meaning one hour and 30 minutes). It may be omitted, in which case the resulting value will be set from the default TTL (if defined) or from the preceding record.

The record class field indicates the namespace of the record information. It may be omitted, in which case the resulting value will be set from the preceding record. The most commonly used namespace is that of the Internet, indicated by parameter IN, but others exist and are in use, e.g., CHAOS.

The record type field is an abbreviation for the type of information stored in the last field, record data. For example: an address record (type A for IPv4, or type AAAA for IPv6,) maps the domain name from the first field to an IP address in the record data; a mail exchanger record (type MX) specifies the Simple Mail Transfer Protocol (SMTP) mail host for a domain.

The record data field may consist of one or more information elements, depending on the requirements of each record type. For example, an address record only requires an address, while a mail exchanger record requires a priority and a domain name. Such information elements are represented as fields separated by white space.

Example file edit

An example of a zone file for the domain example.com is the following:

$ORIGIN example.com. ; designates the start of this zone file in the namespace $TTL 3600 ; default expiration time (in seconds) of all RRs without their own TTL value example.com. IN SOA ns.example.com. username.example.com. ( 2020091025 7200 3600 1209600 3600 ) example.com. IN NS ns ; ns.example.com is a nameserver for example.com example.com. IN NS ns.somewhere.example. ; ns.somewhere.example is a backup nameserver for example.com example.com. IN MX 10 mail.example.com. ; mail.example.com is the mailserver for example.com @ IN MX 20 mail2.example.com. ; equivalent to above line, "@" represents zone origin @ IN MX 50 mail3 ; equivalent to above line, but using a relative host name example.com. IN A 192.0.2.1 ; IPv4 address for example.com IN AAAA 2001:db8:10::1 ; IPv6 address for example.com ns IN A 192.0.2.2 ; IPv4 address for ns.example.com IN AAAA 2001:db8:10::2 ; IPv6 address for ns.example.com www IN CNAME example.com. ; www.example.com is an alias for example.com wwwtest IN CNAME www ; wwwtest.example.com is another alias for www.example.com mail IN A 192.0.2.3 ; IPv4 address for mail.example.com mail2 IN A 192.0.2.4 ; IPv4 address for mail2.example.com mail3 IN A 192.0.2.5 ; IPv4 address for mail3.example.com

At minimum, the zone file must specify the Start of Authority (SOA) record with the name of the authoritative master name server for the zone and the email address of someone responsible for management of the name server (represented as a domain name, with a full stop character in place of the usual @ symbol). The parameters of the SOA record also specify a list of timing and expiration parameters (serial number, slave refresh period, slave retry time, slave expiration time, and the maximum time to cache the record). Some name servers, including BIND, also require at least one additional NS record.

In the zone file, domain names that end with a full stop character (such as "example.com." in the above example) are fully qualified while those that do not end with a full stop are relative to the current origin (which is why www in the above example refers to www.example.com).

A zone file is referenced by the configuration file of the name server software. For example, BIND typically uses a statement such as:

zone "example.com" { type master; file "/var/named/db.example.com"; }; 

Root zone and top-level domains edit

The zone files for the DNS root zone and for the set of top-level domains contain resource records only for the authoritative domain name servers for each domain name.

Localhost edit

Some server software automatically configures resource records for specially recognized domains or hostnames, such as localhost, but a customized zone master file may be used.

An example for manual configuration of the forward zone for localhost is the following:

$ORIGIN localhost. @ 86400 IN SOA @ root (  1999010100 ; serial  10800 ; refresh (3 hours)  900 ; retry (15 minutes)  604800 ; expire (1 week)  86400 ; minimum (1 day)  ) @ 86400 IN NS @ @ 86400 IN A 127.0.0.1 @ 86400 IN AAAA ::1 

The corresponding reverse zone definition is:

;; reverse zone file for 127.0.0.1 and ::1 $TTL 1814400 ; 3 weeks @ 1814400 IN SOA localhost. root.localhost. (  1999010100 ; serial  10800 ; refresh (3 hours)  900 ; retry (15 minutes)  604800 ; expire (1 week)  86400 ; minimum (1 day)  ) @ 1814400 IN NS localhost. 1 1814400 IN PTR localhost. 

This file does not specify the origin so that it may be used for both IPv4 and IPv6 with this configuration:

zone "0.0.127.in-addr.arpa" IN {  type master;  file "r.local";  }; zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {  type master;  file "r.local";  }; 

Similar zone master files may be created for the reverse resolution of the broadcast address and the null address. Such zone files prevent a DNS server from referring to other, possibly external DNS servers.

See also edit

External links edit

References edit

  1. ^ RFC 1035, Domain Names - Implementation and Specification, P. Mockapetris, (November 1987)

zone, file, this, article, relies, largely, entirely, single, source, relevant, discussion, found, talk, page, please, help, improve, this, article, introducing, citations, additional, sources, find, sources, news, newspapers, books, scholar, jstor, november, . This article relies largely or entirely on a single source Relevant discussion may be found on the talk page Please help improve this article by introducing citations to additional sources Find sources Zone file news newspapers books scholar JSTOR November 2020 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 1 DNS Zone FileFilename extension zoneInternet media typetext dnsDeveloped byISIInitial release1987 36 years ago 1987 Type of formatFile formatStandardsRFC 1034 1035 2308 4027Open format Yes Contents 1 File format 1 1 Example file 2 Root zone and top level domains 3 Localhost 4 See also 5 External links 6 ReferencesFile format editThe 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 see also Microsoft DNS with Active Directory database integration A zone file is a sequence of line oriented entries each of which is either a directive or a text description that defines a single resource record RR An entry is composed of fields separated by any combination of white space tabs and spaces and ends at a line boundary except inside a quoted string field value or a pair of enclosing formatting parentheses Any line may end with comment text preceded by a semicolon and the file may also contain any number of blank lines Entries may occur in any order in a zone file with some exceptions Directives are control entries that affect the rest of the zone file The first field of a directive consists of a dollar sign followed by a keyword ORIGIN is followed by a domain name to be used as the origin for subsequent relative domain names INCLUDE is followed by a file name and optional origin domain name to be used when interpreting its contents which are treated as if they appeared in the parent file followed by a reset to the origin value preceding evaluation of the directive TTL defined in RFC 2308 section 4 is followed by a number to be used as the default TTL time to live GENERATE a non standard extension accepted by BIND and some other name server software to insert multiple resource records with one entry is followed by a concise representation of an increasing sequence of nonnegative numbers and then a template RR entry A resource record is added for each number in the sequence using the template with unescaped characters replaced by the number A resource record entry consists of several fields as follows both field orderings are acceptable and may be used interchangeably name ttl record class record type record dataname record class ttl record type record dataThe name field may be left blank If so the record inherits the field from the previous record A free standing is used to denote the current origin The ttl field specifies the number of seconds after which a caching client must discard the record and perform a new resolution operation to obtain fresh information Some name servers including BIND allow nonstandard representations that use time unit abbreviations for example 2d meaning two 24 hour days or 1h30m meaning one hour and 30 minutes It may be omitted in which case the resulting value will be set from the default TTL if defined or from the preceding record The record class field indicates the namespace of the record information It may be omitted in which case the resulting value will be set from the preceding record The most commonly used namespace is that of the Internet indicated by parameter IN but others exist and are in use e g CHAOS The record type field is an abbreviation for the type of information stored in the last field record data For example an address record type A for IPv4 or type AAAA for IPv6 maps the domain name from the first field to an IP address in the record data a mail exchanger record type MX specifies the Simple Mail Transfer Protocol SMTP mail host for a domain The record data field may consist of one or more information elements depending on the requirements of each record type For example an address record only requires an address while a mail exchanger record requires a priority and a domain name Such information elements are represented as fields separated by white space Example file edit An example of a zone file for the domain example com is the following span class k ORIGIN span span class w span span class l example com span span class w span span class c1 designates the start of this zone file in the namespace span span class k TTL span span class w span span class mi 3600 span span class w span span class c1 default expiration time in seconds of all RRs without their own TTL value span span class n example com span span class w span span class nc IN span span class w span span class kt SOA span span class w span span class l ns example com span span class w span span class l username example com span span class w span span class p span span class w span span class mi 2020091025 span span class w span span class mi 7200 span span class w span span class mi 3600 span span class w span span class mi 1209600 span span class w span span class mi 3600 span span class w span span class p span span class n example com span span class w span span class nc IN span span class w span span class kt NS span span class w span span class l ns span span class w span span class c1 ns example com is a nameserver for example com span span class n example com span span class w span span class nc IN span span class w span span class kt NS span span class w span span class l ns somewhere example span span class w span span class c1 ns somewhere example is a backup nameserver for example com span span class n example com span span class w span span class nc IN span span class w span span class kt MX span span class w span span class mi 10 span span class w span span class l mail example com span span class w span span class c1 mail example com is the mailserver for example com span span class o span span class w span span class nc IN span span class w span span class kt MX span span class w span span class mi 20 span span class w span span class l mail2 example com span span class w span span class c1 equivalent to above line represents zone origin span span class o span span class w span span class nc IN span span class w span span class kt MX span span class w span span class mi 50 span span class w span span class l mail3 span span class w span span class c1 equivalent to above line but using a relative host name span span class n example com span span class w span span class nc IN span span class w span span class kt A span span class w span span class l 192 0 2 1 span span class w span span class c1 IPv4 address for example com span span class n IN span span class w span span class kt AAAA span span class w span span class l 2001 db8 10 1 span span class w span span class c1 IPv6 address for example com span span class n ns span span class w span span class nc IN span span class w span span class kt A span span class w span span class l 192 0 2 2 span span class w span span class c1 IPv4 address for ns example com span span class n IN span span class w span span class kt AAAA span span class w span span class l 2001 db8 10 2 span span class w span span class c1 IPv6 address for ns example com span span class n www span span class w span span class nc IN span span class w span span class kt CNAME span span class w span span class l example com span span class w span span class c1 www example com is an alias for example com span span class n wwwtest span span class w span span class nc IN span span class w span span class kt CNAME span span class w span span class l www span span class w span span class c1 wwwtest example com is another alias for www example com span span class n mail span span class w span span class nc IN span span class w span span class kt A span span class w span span class l 192 0 2 3 span span class w span span class c1 IPv4 address for mail example com span span class n mail2 span span class w span span class nc IN span span class w span span class kt A span span class w span span class l 192 0 2 4 span span class w span span class c1 IPv4 address for mail2 example com span span class n mail3 span span class w span span class nc IN span span class w span span class kt A span span class w span span class l 192 0 2 5 span span class w span span class c1 IPv4 address for mail3 example com span At minimum the zone file must specify the Start of Authority SOA record with the name of the authoritative master name server for the zone and the email address of someone responsible for management of the name server represented as a domain name with a full stop character in place of the usual symbol The parameters of the SOA record also specify a list of timing and expiration parameters serial number slave refresh period slave retry time slave expiration time and the maximum time to cache the record Some name servers including BIND also require at least one additional NS record In the zone file domain names that end with a full stop character such as example com in the above example are fully qualified while those that do not end with a full stop are relative to the current origin which is why www in the above example refers to www example com A zone file is referenced by the configuration file of the name server software For example BIND typically uses a statement such as zone example com type master file var named db example com Root zone and top level domains editThe zone files for the DNS root zone and for the set of top level domains contain resource records only for the authoritative domain name servers for each domain name Localhost editSome server software automatically configures resource records for specially recognized domains or hostnames such as localhost but a customized zone master file may be used An example for manual configuration of the forward zone for localhost is the following ORIGIN localhost 86400 IN SOA root 1999010100 serial 10800 refresh 3 hours 900 retry 15 minutes 604800 expire 1 week 86400 minimum 1 day 86400 IN NS 86400 IN A 127 0 0 1 86400 IN AAAA 1 The corresponding reverse zone definition is reverse zone file for 127 0 0 1 and 1 TTL 1814400 3 weeks 1814400 IN SOA localhost root localhost 1999010100 serial 10800 refresh 3 hours 900 retry 15 minutes 604800 expire 1 week 86400 minimum 1 day 1814400 IN NS localhost 1 1814400 IN PTR localhost This file does not specify the origin so that it may be used for both IPv4 and IPv6 with this configuration zone 0 0 127 in addr arpa IN type master file r local zone 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ip6 arpa IN type master file r local Similar zone master files may be created for the reverse resolution of the broadcast address and the null address Such zone files prevent a DNS server from referring to other possibly external DNS servers See also editList of DNS record typesExternal links editCreate a Zone file Archived November 12 2020 at the Wayback MachineReferences edit RFC 1035 Domain Names Implementation and Specification P Mockapetris November 1987 Retrieved from https en wikipedia org w index php title Zone file amp oldid 1171171798, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.