Re: Suppressing "Limiting icmp unreach response" log messages

2008-03-27 Thread Christopher Cowart
Paul Hoffman wrote: > How can I eliminate the "Limiting icmp unreach response" messages from > getting to /var/log/messages or to the console? I have a spate of them that > is causing log rollovers. I think I know the source of the problem, but > need to get rid of the messages first. The icmp

Re: Suppressing "Limiting icmp unreach response" log messages

2008-03-27 Thread Brian A. Seklecki
Install syslog-ng 2.x from ports. source src { unix-dgram("/var/run/log"); unix-dgram("/var/run/logpriv" perm(0600)); internal(); file("/dev/klog"); }; Kernel messages from /dev/klog get mapped to "user.notice" syslog, so: log { source(src); filter(f_user); filter(f_n

Suppressing "Limiting icmp unreach response" log messages

2008-03-27 Thread Paul Hoffman
How can I eliminate the "Limiting icmp unreach response" messages from getting to /var/log/messages or to the console? I have a spate of them that is causing log rollovers. I think I know the source of the problem, but need to get rid of the messages first. _