Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. //
  2. // named.caching-nameserver.conf
  3. //
  4. // Provided by Red Hat caching-nameserver package to configure the
  5. // ISC BIND named(8) DNS server as a caching only nameserver
  6. // (as a localhost DNS resolver only).
  7. //
  8. // See /usr/share/doc/bind*/sample/ for example named configuration files.
  9. //
  10. // DO NOT EDIT THIS FILE - use system-config-bind or an editor
  11. // to create named.conf - edits to this file will be lost on
  12. // caching-nameserver package upgrade.
  13. //
  14.  
  15. options {
  16. listen-on port 53 { any; };
  17. //listen-on-v6 port 53 { ::1; };
  18. directory "/vol/named";
  19. dump-file "/vol/named/data/cache_dump.db";
  20. statistics-file "/vol/named/data/named_stats.txt";
  21. memstatistics-file "/vol/named/data/named_mem_stats.txt";
  22. allow-transfer { 174.129.225.76; };
  23. recursion yes;
  24. forwarders { 172.16.0.23; };
  25. // query-source address * port 53;
  26. };
  27.  
  28. logging {
  29. channel default_debug {
  30. file "data/named.run";
  31. severity dynamic;
  32. };
  33. };
  34.  
  35. zone "." IN {
  36. type hint;
  37. file "named.ca";
  38. };
  39.  
  40. include "/etc/named.rfc1912.zones";
  41. include "/etc/rndc.key";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement