db.default-zones 513 B

1234567891011121314151617181920212223242526272829303132
  1. // prime the server with knowledge of the root servers
  2. zone "." {
  3. type hint;
  4. file "named.ca";
  5. };
  6. // be authoritative for the localhost forward and reverse zones, and for
  7. // broadcast zones as per RFC 1912
  8. zone "localhost" {
  9. type master;
  10. notify no;
  11. file "pri/localhost.zone";
  12. };
  13. zone "127.in-addr.arpa" {
  14. type master;
  15. notify no;
  16. file "pri/127.zone";
  17. };
  18. zone "0.in-addr.arpa" {
  19. type master;
  20. file "/etc/bind/zones/db.0";
  21. };
  22. zone "255.in-addr.arpa" {
  23. type master;
  24. file "/etc/bind/zones/db.255";
  25. };