Advertisement
y2kbug

named.conf.options

Jul 10th, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. options {
  2. version "";
  3. directory "/var/cache/bind";
  4. port 53;
  5.  
  6. dnssec-enable yes;
  7. dnssec-validation yes;
  8. auth-nxdomain no;
  9. recursion yes;
  10.  
  11. forward only;
  12. forwarders {
  13. 1.1.1.1;
  14. 8.8.8.8;
  15. };
  16.  
  17. allow-query { any; };
  18. allow-query-cache { any; };
  19. allow-recursion { any; };
  20.  
  21. listen-on { any; };
  22. listen-on-v6 { none; };
  23.  
  24. response-policy { zone "rpz"; };
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement