Advertisement
FengShui

named.conf.options

Jul 18th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. acl trusted {
  2. 10.0.0.0/8;
  3. };
  4.  
  5. acl my_addresses {
  6. 127.0.0.1/32;
  7. ::1/128;
  8. 10.27.0.65;
  9. };
  10.  
  11.  
  12. options {
  13. directory "/var/cache/bind";
  14.  
  15. recursion yes;
  16. allow-query {
  17. localhost;
  18. trusted;
  19. };
  20.  
  21. allow-recursion { 127.0.0.1; trusted; };
  22.  
  23. empty-zones-enable yes;
  24.  
  25. deny-answer-addresses { my_addresses; };
  26.  
  27. forwarders {
  28. 10.27.0.1;
  29. 90.255.255.254;
  30. 90.255.255.90;
  31. 8.8.8.8;
  32. 8.8.4.4;
  33. 1.1.1.1;
  34. 1.0.0.1;
  35. };
  36.  
  37. dnssec-validation auto;
  38.  
  39. listen-on-v6 { any; };
  40. };
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement