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.

45 lines
905 B

  1. // This is the primary configuration file for the BIND DNS server named.
  2. options {
  3. directory "/tmp";
  4. // If your ISP provided one or more IP addresses for stable
  5. // nameservers, you probably want to use them as forwarders.
  6. // Uncomment the following block, and insert the addresses replacing
  7. // the all-0's placeholder.
  8. // forwarders {
  9. // 0.0.0.0;
  10. // };
  11. auth-nxdomain no; # conform to RFC1035
  12. };
  13. // prime the server with knowledge of the root servers
  14. zone "." {
  15. type hint;
  16. file "/etc/bind/db.root";
  17. };
  18. // be authoritative for the localhost forward and reverse zones, and for
  19. // broadcast zones as per RFC 1912
  20. zone "localhost" {
  21. type master;
  22. file "/etc/bind/db.local";
  23. };
  24. zone "127.in-addr.arpa" {
  25. type master;
  26. file "/etc/bind/db.127";
  27. };
  28. zone "0.in-addr.arpa" {
  29. type master;
  30. file "/etc/bind/db.0";
  31. };
  32. zone "255.in-addr.arpa" {
  33. type master;
  34. file "/etc/bind/db.255";
  35. };