Advertisement
Guest User

Untitled

a guest
Aug 8th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. include "/etc/bind/named.conf.tsigkeys";
  2.  
  3. acl internals {
  4. 192.168.0.0/16;
  5. 127.0.0.0/8;
  6. 10.0.0.0/24;
  7. };
  8.  
  9. acl servers {
  10. 82.40.81.96;
  11. };
  12.  
  13. options {
  14. masterfile-format text;
  15. listen-on port 53 { 172.104.150.205; 127.0.0.1; };
  16. directory "/var/cache/bind";
  17. auth-nxdomain no; # conform to RFC1035
  18. dnssec-validation yes;
  19. querylog yes;
  20. allow-recursion { internals; servers; };
  21. allow-query-cache { internals; servers; };
  22. notify no;
  23. transfer-source 172.104.150.205 port 53;
  24. allow-query { any; };
  25. };
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement