Advertisement
Guest User

Untitled

a guest
Nov 4th, 2014
927
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. options {
  2. listen-on port 53 { 127.0.0.1; };
  3. listen-on-v6 port 53 { ::1; };
  4. directory "/var/named";
  5. dump-file "/var/named/data/cache_dump.db";
  6. statistics-file "/var/named/data/named_stats.txt";
  7. memstatistics-file "/var/named/data/named_mem_stats.txt";
  8. allow-query { localhost; };
  9. recursion yes;
  10.  
  11. dnssec-enable no;
  12. dnssec-validation no;
  13. dnssec-lookaside auto;
  14.  
  15. /* Path to ISC DLV key */
  16. bindkeys-file "/etc/named.iscdlv.key";
  17.  
  18. managed-keys-directory "/var/named/dynamic";
  19.  
  20. allow-transfer { none; };
  21. allow-notify { none; };
  22. forwarders { 72.3.128.240; 72.3.128.241; };
  23. forward only;
  24. allow-recursion { localhost; };
  25. allow-query-cache { localhost; };
  26. auth-nxdomain no;
  27. version "asdf";
  28. };
  29.  
  30. logging {
  31. channel default_debug {
  32. file "data/named.run";
  33. severity dynamic;
  34. };
  35. };
  36.  
  37. zone "." IN {
  38. type hint;
  39. file "named.ca";
  40. };
  41.  
  42. include "/etc/named.rfc1912.zones";
  43. include "/etc/named.root.key";
  44.  
  45. // Disable forwarding for DNSBL queries
  46. // https://wiki.apache.org/spamassassin/CachingNameserver#Non-forwarding
  47. zone "multi.uribl.com" { type forward; forward first; forwarders {}; };
  48. zone "dnsbl.sorbs.net" { type forward; forward first; forwarders {}; };
  49. zone "combined.njabl.org" { type forward; forward first; forwarders {}; };
  50. zone "activationcode.r.mail-abuse.com" { type forward; forward first; forwarders {}; };
  51. zone "nonconfirm.mail-abuse.com" { type forward; forward first; forwarders {}; };
  52. zone "iadb.isipp.com" { type forward; forward first; forwarders {}; };
  53. zone "bl.spamcop.net" { type forward; forward first; forwarders {}; };
  54. zone "fulldom.rfc-ignorant.org" { type forward; forward first; forwarders {}; };
  55. zone "list.dnswl.org" { type forward; forward first; forwarders {}; };
  56. zone "blackholes.mail-abuse.org" { type forward; forward first; forwarders {}; };
  57. zone "bl.score.senderscore.com" { type forward; forward first; forwarders {}; };
  58. zone "zen.spamhaus.org" { type forward; forward first; forwarders {}; };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement