Advertisement
Guest User

Bind 9.10.3-P4 bug

a guest
Mar 21st, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. options {
  2. directory "/var/named";
  3. };
  4.  
  5. logging {
  6.  
  7. channel debug_log {
  8. file "/var/log/debug.log";
  9. print-time yes;
  10. print-category yes;
  11. severity debug;
  12. };
  13.  
  14. category default { debug_log; };
  15. category general { debug_log; };
  16. category security { debug_log; };
  17. category config { debug_log; };
  18. category client { debug_log; };
  19. category resolver { debug_log; };
  20. category xfer-in { debug_log; };
  21. category xfer-out { debug_log; };
  22. category notify { debug_log; };
  23. category client { debug_log; };
  24. category network { debug_log; };
  25. category update { debug_log; };
  26. category dnssec { debug_log; };
  27. category unmatched { debug_log; };
  28. category queries { debug_log; };
  29. category lame-servers { debug_log; };
  30.  
  31. };
  32.  
  33. view "mordor" {
  34.  
  35. zone example.com {
  36. type slave;
  37. file "slaves/example.db";
  38. masters { 192.168.1.1; };
  39. };
  40.  
  41. };
  42.  
  43.  
  44. view "gondor" {
  45.  
  46. zone example.com {
  47. in-view "mordor";
  48. };
  49.  
  50. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement