Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2013
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1.  
  2. options {
  3. directory "/var/cache/bind";
  4. listen-on-v6 {
  5. "any";
  6. };
  7. allow-recursion {
  8. "trusted";
  9. };
  10. auth-nxdomain no;
  11. dnssec-enable no;
  12. dnssec-validation no;
  13. recursion yes;
  14. allow-query {
  15. "trusted";
  16. };
  17. forwarders {
  18. 212.54.*.*;
  19. 212.54.*.*;
  20. };
  21. };
  22. acl "trusted" {
  23. 192.168.178.16/32;
  24. 127.0.0.1/32;
  25. 84.31.*.*/32;
  26. };
  27. logging {
  28. channel "bind_log" {
  29. file "/var/log/named/named.log" versions 5 size 31457280;
  30. severity info;
  31. print-time yes;
  32. print-severity yes;
  33. print-category yes;
  34. };
  35. category "default" {
  36. "bind_log";
  37. };
  38. category "queries" {
  39. "bind_log";
  40. };
  41. };
  42. key "rndc-key" {
  43. algorithm "hmac-md5";
  44. secret "***********==";
  45. };
  46. zone "hulu.com." {
  47. type master;
  48. file "/etc/bind/db.override";
  49. };
  50. zone "huluim.com." {
  51. type master;
  52. file "/etc/bind/db.override";
  53. };
  54. zone "netflix.com." {
  55. type master;
  56. file "/etc/bind/db.override";
  57. };
  58. zone "abc.com." {
  59. type master;
  60. file "/etc/bind/db.override";
  61. };
  62. zone "abc.go.com." {
  63. type master;
  64. file "/etc/bind/db.override";
  65. };
  66. zone "fox.com." {
  67. type master;
  68. file "/etc/bind/db.override";
  69. };
  70. zone "link.theplatform.com." {
  71. type master;
  72. file "/etc/bind/db.override";
  73. };
  74. zone "nbc.com." {
  75. type master;
  76. file "/etc/bind/db.override";
  77. };
  78. zone "nbcuni.com." {
  79. type master;
  80. file "/etc/bind/db.override";
  81. };
  82. zone "pandora.com." {
  83. type master;
  84. file "/etc/bind/db.override";
  85. };
  86. zone "broadband.espn.go.com." {
  87. type master;
  88. file "/etc/bind/db.override";
  89. };
  90. zone "ip2location.com." {
  91. type master;
  92. file "/etc/bind/db.override";
  93. };
  94. zone "." {
  95. type hint;
  96. file "/etc/bind/db.root";
  97. };
  98. zone "localhost" {
  99. type master;
  100. file "/etc/bind/db.local";
  101. };
  102. zone "127.in-addr.arpa" {
  103. type master;
  104. file "/etc/bind/db.127";
  105. };
  106. zone "0.in-addr.arpa" {
  107. type master;
  108. file "/etc/bind/db.0";
  109. };
  110. zone "255.in-addr.arpa" {
  111. type master;
  112. file "/etc/bind/db.255";
  113. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement