named.conf.options 1.1 KB

123456789101112131415161718192021222324
  1. options {
  2. directory "/var/cache/bind";
  3. // If there is a firewall between you and nameservers you want
  4. // to talk to, you may need to fix the firewall to allow multiple
  5. // ports to talk. See http://www.kb.cert.org/vuls/id/800113
  6. // If your ISP provided one or more IP addresses for stable
  7. // nameservers, you probably want to use them as forwarders.
  8. // Uncomment the following block, and insert the addresses replacing
  9. // the all-0's placeholder.
  10. // forwarders {
  11. // 0.0.0.0;
  12. // };
  13. //========================================================================
  14. // If BIND logs error messages about the root key being expired,
  15. // you will need to update your keys. See https://www.isc.org/bind-keys
  16. //========================================================================
  17. dnssec-validation auto;
  18. auth-nxdomain no;
  19. allow-recursion { 127.0.0.1; ::1; };
  20. allow-transfer {"none";};
  21. hostname none;
  22. server-id none;
  23. version none;
  24. };