Advertisement
AshrafHassan

options.conf

Jan 31st, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. options {
  2.  
  3. directory "/var/named";
  4. auth-nxdomain no; # conform to RFC1035
  5. listen-on port 53 { 0.0.0.0/0; };
  6. listen-on-v6 { none; }; // disabled by RCi
  7. dump-file "/var/named/data/cache_dump.db";
  8. statistics-file "/var/named/data/named_stats.txt";
  9. memstatistics-file "/var/named/data/named_mem_stats.txt";
  10. allow-query {any;};
  11. allow-transfer { "none";};
  12. allow-notify { 192.168.1.11;
  13. 192.168.1.12;
  14. };
  15. recursion no;
  16. allow-query-cache { any; };
  17. zone-statistics yes;
  18. };
  19.  
  20. key INTERNAL {
  21. algorithm hmac-md5;
  22. secret "SU5URVBDCg==";
  23. };
  24. key EXTERNAL {
  25. algorithm hmac-md5;
  26. secret "RVhURVBDCg==";
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement