named.conf.default-zones 490 B

123456789101112131415161718192021222324252627282930
  1. // prime the server with knowledge of the root servers
  2. zone "." {
  3. type hint;
  4. file "/etc/bind/db.root";
  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. file "/etc/bind/db.local";
  11. };
  12. zone "127.in-addr.arpa" {
  13. type master;
  14. file "/etc/bind/db.127";
  15. };
  16. zone "0.in-addr.arpa" {
  17. type master;
  18. file "/etc/bind/db.0";
  19. };
  20. zone "255.in-addr.arpa" {
  21. type master;
  22. file "/etc/bind/db.255";
  23. };