Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Mar 2008 11:17:01 -0400
From:      "Brian A. Seklecki" <bseklecki@collaborativefusion.com>
To:        Paul Hoffman <phoffman@proper.com>
Cc:        freebsd-questions@FreeBSD.ORG
Subject:   Re: Suppressing "Limiting icmp unreach response" log messages
Message-ID:  <1206631021.18298.184.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com>
In-Reply-To: <p06240819c411630beacb@[10.20.30.162]>
References:  <p06240819c411630beacb@[10.20.30.162]>

next in thread | previous in thread | raw e-mail | index | archive | help
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_notice); 
   destination(mailadmin); };

Or the destionation of your choice.

~BAS


On Thu, 2008-03-27 at 07:44 -0700, 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.
> _______________________________________________
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
-- 
Brian A. Seklecki <bseklecki@collaborativefusion.com>
Collaborative Fusion, Inc.




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1206631021.18298.184.camel>