|
jvdias |
053216 |
//
|
|
jvdias |
053216 |
// The 'named.root' root cache hints zone for the bind DNS 'named' nameserver.
|
|
jvdias |
053216 |
//
|
|
jvdias |
053216 |
// named's cache must be primed with the addresses of the root zone '.' nameservers.
|
|
jvdias |
053216 |
// The root zone file can be obtained by querying the root 'A' nameserver:
|
|
jvdias |
053216 |
// $ dig . ns @198.41.0.4 > named.root
|
|
jvdias |
053216 |
// Or by download via FTP / HTTP:
|
|
jvdias |
053216 |
// $ wget ftp://ftp.rs.internic.net/domain/named.root
|
|
jvdias |
053216 |
//
|
|
jvdias |
053216 |
// Every view that is to provide recursive service must include this zone.
|
|
jvdias |
053216 |
//
|
|
jvdias |
053216 |
zone "." IN {
|
|
jvdias |
053216 |
type hint;
|
|
jvdias |
053216 |
file "named.root";
|
|
jvdias |
053216 |
};
|