1234567891011121314151617181920212223242526272829303132 |
- // prime the server with knowledge of the root servers
- zone "." {
- type hint;
- file "named.ca";
- };
- // be authoritative for the localhost forward and reverse zones, and for
- // broadcast zones as per RFC 1912
- zone "localhost" {
- type master;
- notify no;
- file "pri/localhost.zone";
- };
- zone "127.in-addr.arpa" {
- type master;
- notify no;
- file "pri/127.zone";
- };
- zone "0.in-addr.arpa" {
- type master;
- file "/etc/bind/zones/db.0";
- };
- zone "255.in-addr.arpa" {
- type master;
- file "/etc/bind/zones/db.255";
- };
|