Advertisement
estevaorada

Untitled

Dec 2nd, 2021
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. options {
  2. directory "/var/cache/bind";
  3.  
  4. // If there is a firewall between you and nameservers you want
  5. // to talk to, you may need to fix the firewall to allow multiple
  6. // ports to talk. See http://www.kb.cert.org/vuls/id/800113
  7.  
  8. // If your ISP provided one or more IP addresses for stable
  9. // nameservers, you probably want to use them as forwarders.
  10. // Uncomment the following block, and insert the addresses replacing
  11. // the all-0's placeholder.
  12.  
  13. forwarders {
  14. // Cloudflare Public DNS (IPv4)
  15. 1.1.1.1;
  16. 1.0.0.1;
  17. // Cloudflare Public DNS (IPv6)
  18. 2606:4700:4700::1111;
  19. 2606:4700:4700::1001;
  20.  
  21. // Google Public DNS (IPv4)
  22. 8.8.8.8;
  23. 8.8.4.4;
  24. // Google Public DNS (IPv6)
  25. 2001:4860:4860::8888;
  26. 2001:4860:4860::8844;
  27. };
  28.  
  29. //========================================================================
  30. // If BIND logs error messages about the root key being expired,
  31. // you will need to update your keys. See https://www.isc.org/bind-keys
  32. //========================================================================
  33.  
  34. dnssec-validation auto;
  35. auth-nxdomain no; # conform to RFC1035
  36. // listen-on-v6 { any; };
  37. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement