Advertisement
sergio_educacionit

named.conf.options

Nov 13th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. acl goodclients {
  2. 190.0.0.0/24;
  3. localhost;
  4. localnets;
  5. };
  6.  
  7. options {
  8. directory "/var/cache/bind";
  9.  
  10. recursion yes;
  11. allow-query { goodclients; };
  12.  
  13. # Reenvia las consultas recibidas
  14. # a servidores dns externos.
  15.  
  16. forwarders {
  17. 8.8.8.8;
  18. 8.8.4.4;
  19. };
  20.  
  21.  
  22. forward only;
  23.  
  24. dnssec-validation auto;
  25.  
  26. auth-nxdomain no; # conform to RFC1035
  27. listen-on-v6 { any; };
  28. };
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement