Advertisement
Sergio_Istea

named.conf.options recursivo

Apr 15th, 2025
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # cat /etc/bind/named.conf.options
  2. acl "red_interna" {
  3. 192.168.0.0/24;
  4. 10.0.0.0/8;
  5. localhost;
  6. };
  7.  
  8. options {
  9. directory "/var/cache/bind";
  10. recursion yes;
  11. allow-query { red_interna; };
  12. allow-recursion { red_interna; };
  13. dnssec-validation auto;
  14. listen-on { 192.168.0.180; 127.0.1.1; };
  15. };
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement