Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The timers that are associated with the entire zone are set in a special record called the Start of Authority (SOA), at the beginning of the zone file. It can be examined by querying the nameserver; for example:

Code Block
% dig \-t soa uoregon.edu

...



uoregon.edu.            86400   IN      SOA     localhost.uoregon.edu.

...


hostmaster.uoregon.edu. 2009120709 7200 900 605000 86400

...



Those fields are:

...



root name of the zone: uoregon.edu.

...


TTL:

...

                   86400
class:                 IN (Internet)

...


name-server:           localhost.uoregon.edu.

...


email-address:         hostmaster@uoregon.edu (the first dot is imputed as

...

 being an @ sign)

...


serial-number:         2009120709 (common practice is to use a timestamp)

...


refresh:               7200 (time between slaves refreshing from the master

...

 name server in seconds)

...


retry:                 900 (time between retries if the slave fails to

...

 connect with the master when refreshing, in seconds)

...


expiry:                605000 (time in seconds til a secondary copy of the

...

 data from the master is no longer valid

...

)
neg-cache-time:        86400 (time in seconds that a NEGATIVE (NXDOMAIN)

...

 answer should be cached)

In the typical model of a master server on campus and slaves both on and off-site, a failure that results in a loss of campus connectivity will cause several immediate effects:

...