Advertisement
Guest User

dns

a guest
Aug 28th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.55 KB | None | 0 0
  1. logging {
  2.  
  3.  
  4. channel default_syslog {
  5. // Send most of the named messages to syslog.
  6. syslog local2;
  7. severity debug;
  8.  
  9. };
  10.  
  11. channel audit_log {
  12. // Send the security related messages to a separate file.
  13. file "/var/named/bind/named.log";
  14. severity debug;
  15. print-time yes;
  16.  
  17. };
  18.  
  19. category default { default_syslog; };
  20. category general { default_syslog; };
  21. category security { audit_log; default_syslog; };
  22. category config { default_syslog; };
  23. category resolver { audit_log; };
  24. category xfer-in { audit_log; };
  25. category xfer-out { audit_log; };
  26. category notify { audit_log; };
  27. category client { audit_log; };
  28. category network { audit_log; };
  29. category update { audit_log; };
  30. category queries { audit_log; };
  31. category lame-servers { audit_log; };
  32.  
  33. };
  34.  
  35.  
  36.  
  37.  
  38.  
  39. http://www.zytrax.com/books/dns/ch7/logging.html
  40. http://stackoverflow.com/questions/11153958/how-to-enable-named-bind-dns-full-logging
  41. http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V50_HTML/SUPPDOCS/BIND_GDE/LOGGING.HTM
  42. http://www.tw.freebsd.org/doc/handbook/network-syslogd.html
  43. http://help.papertrailapp.com/kb/configuration/configuring-remote-syslog-from-unixlinux-and-bsdos-x
  44. http://www.howtogeek.com/107069/how-to-remotely-collect-server-events-using-syslog/
  45. https://developer.ridgerun.com/wiki/index.php/How_to_Configure_Remote_Syslog_Logging
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58. http://floriancrouzat.net/2011/09/centos-6-configure-bind-logging-bind-chroot-rsyslog/
  59. http://docstore.mik.ua/orelly/networking_2ndEd/dns/ch07_05.htm
  60. https://www.centos.org/forums/viewtopic.php?t=6687
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement