Sergio_Istea

forwarder

Apr 22nd, 2025 (edited)
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. acl "red_interna" {
  2. 192.168.0.0/24;
  3. 10.0.0.0/8;
  4. localhost;
  5. };
  6.  
  7. options {
  8. directory "/var/cache/bind";
  9.  
  10. allow-query { red_interna; }; // Se permite a la red interna hacer consultas
  11.  
  12. forward only; // Solo se usarĂ¡n los servidores indicados en forwarders
  13. forwarders {
  14. 8.8.8.8;
  15. 1.1.1.1;
  16. };
  17.  
  18. dnssec-validation auto;
  19. listen-on { 192.168.0.180; 127.0.1.1; };
  20. };
  21.  
Advertisement
Add Comment
Please, Sign In to add comment