[syslog-ng]destination problem

Ohrberg, Mick Mick.Ohrberg@umb.com
Wed, 10 Jan 2001 13:28:02 -0600


[snip]

> 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.

Try 

destination logserver { udp("10.1.2.3" port(10514)); };

	/Mick