TC> I'm trying to find an example of the named.boot file and the
TC> data file for a primary zone using the DNS server named.
TC> I already have a secondary setup and working.
This ought to give you a pretty good summary. All instances of named should be
run authoritative for the "localhost" and loopback (Net 127) domains.
-- Mike
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
x
x /etc/named.boot
x
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
directory /etc/dns
cache . root.cache
primary localhost pri.localhost
primary 127.in-addr.arpa pri.localhost.rev
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
x
x /etc/dns/pri.localhost
x
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
$ORIGIN localhost.
@ SOA localhost. god.localhost. ( 1 3600 1800 604800 86400 )
NS localhost.
A 127.0.0.1
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
x
x /etc/dns/pri.localhost.rev
x
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
$ORIGIN 127.in-addr.arpa.
@ SOA localhost. god.localhost. ( 1 3600 1800 604800 86400 )
NS localhost.
1.0.0 PTR localhost.
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx