[syslog-ng]destination problem

William Yodlowsky wyodlows@andromeda.rutgers.edu
Wed, 10 Jan 2001 14:03:41 -0500


I'm sure I'm missing something simple here...

I've got a 3 line config file for a syslog client.  This is 1.4.10.

source src { sun-streams("/dev/log" door("/etc/.syslog_door")); internal(); };
destination logserver { udp(ip(10.1.2.3) port(10514)); };
log { source(src); destination(logserver); };

I consistently get a parse error on that destination line.  Yet
everything I read in the docs looks that way, and the remote syslog
server (running the same version) has the same entry has a source
parameter and works fine.

I've tried twiddling with semicolons and parentheses, tcp and udp, no
port number and just a port number.  It refuses to work for me...

Have I been staring at this for too long or is there a glaring error?

Thanks in advance!