Advertisement
Guest User

allow-recursion

a guest
May 19th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. acl "transfer" {
  2. 10.0.0.0/8;
  3. 176.9.187.208/28;
  4. 176.9.204.48/29;
  5. 188.40.254.208/29;
  6. };
  7.  
  8. options {
  9. listen-on port 53 { 127.0.0.1;10.27.253.10;10.27.253.11;176.9.204.50;176.9.187.218; };
  10. listen-on-v6 port 53 { ::1; };
  11. directory "/var/cache/bind";
  12. dump-file "/var/cache/bind/data/cache_dump.db";
  13. statistics-file "/var/cache/bind/data/named_stats.txt";
  14. memstatistics-file "/var/cache/bind/data/named_mem_stats.txt";
  15. allow-query { any; };
  16. allow-transfer { "transfer"; };
  17.  
  18. recursion yes;
  19. allow-recursion { any; };
  20. forwarders { 8.8.8.8; 8.8.4.4; };
  21. rrset-order { order random; };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement