[syslog-ng]Catch All Statement

nate syslog-ng@lists.balabit.hu
Thu, 10 Apr 2003 13:07:53 -0700 (PDT)


Doug Peterson said:

> Any help is greatly appreciated. :)

I do this for one of my syslog-ng clients which forwards to the
syslog-ng server through a firewall:


options { long_hostnames(off); sync(0); };
source src { unix-dgram("/dev/log"); unix-dgram("/etc/bind/dev/log");
internal(); };
destination d_tcp { tcp("216.39.174.24" port(24350));  };
filter all { level (debug..emerg); };
log { source(src); filter(all); destination(d_tcp); };

it seems to catch everything ??

nate