You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
490 B

  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. };