Advertisement
FengShui

named.conf.options

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