10 Apr
2003
10 Apr
'03
9:07 p.m.
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