sergio_educacionit

bind reenvio

Jul 10th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. acl "my-network" {
  2. 192.168.0.0/24;
  3. 192.168.200.3;
  4. localhost;
  5. };
  6.  
  7. options {
  8. directory "/var/cache/bind";
  9.  
  10. allow-query { my-network; };
  11. allow-recursion { my-network; };
  12.  
  13. dnssec-validation auto;
  14.  
  15. listen-on { 192.168.0.100; };
  16.  
  17. allow-transfer { none; };
  18.  
  19. forwarders {
  20. 8.8.8.8;
  21. 8.8.4.4;
  22. };
  23.  
  24. forward only;
  25. };
  26.  
Advertisement
Add Comment
Please, Sign In to add comment