Ashley M. Kirchner said:
>
>     How can I suppress these bind-9 messages in syslog:
>

check the manpage on named.conf. I haven't tried bind 9 yet but
bind 8 is probably similar ..

I have a section called logging:

logging {
  channel chroot_default {
  file "log/named.log";
  severity info;
  };
  channel chroot_debug {
  file "log/debug.log";
  severity dynamic;
  };

category default { default_syslog; };
category panic { default_syslog; };
category packet { chroot_debug; };
category lame-servers { null; };
category queries { null; };
category statistics { default_syslog; };
category config { default_syslog; };
category parser { default_syslog; };
category ncache { default_syslog; };
category xfer-in { default_syslog; };
category xfer-out { default_syslog; };
category db { default_syslog; };
category eventlib { default_syslog; };
category notify { default_syslog; };
category cname { default_syslog; };
category security { default_syslog; };
category os { default_syslog; };
category insist { default_syslog; };
category maintenance { default_syslog; };
category load { default_syslog; };
category response-checks { default_syslog; };
};


note the lame-servers category and the setting of null.

nate





-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to