PPP - Pedantic PPP Primer : Exercises for the Interested Student : Creating a mini-DNS system : The /etc/namedb/named.boot file
Previous: Creating a mini-DNS system
Next: The /etc/namedb/mydomain.db file

7.1.1. The /etc/namedb/named.boot file

The /etc/namedb/named.boot file controls the startup settings of the DNS server. Esentially, it tells the Name Server:

  1. Where to find configuration files,
  2. What "domain names" it's responsible for, and
  3. Where to find other DNS servers.

Using the 'ee' editor, create a /etc/namedb/named.boot with the following contents: <hr>

; boot file for mini-name server

directory	/etc/namedb

; type    domain		source host/file		backup file

cache     .			named.root
primary   my.domain.		mydomain.db
<hr>

Lines that begin with a semi-colon are comments. The significant lines in this file are:

Once the /etc/namedb/named.boot file has been created and saved, proceed to the next section to create the /etc/namedb/mydomain.db file.


PPP - Pedantic PPP Primer : Exercises for the Interested Student : Creating a mini-DNS system : The /etc/namedb/named.boot file
Previous: Creating a mini-DNS system
Next: The /etc/namedb/mydomain.db file