[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
On Wed, Jan 10, 2001 at 01:28:02PM -0600, Ohrberg, Mick wrote:
[snip]
destination logserver { udp(ip(10.1.2.3) port(10514)); };
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.
destination logserver { udp("10.1.2.3" port(10514)); };
Thanks much, that got it. Perhaps this could be added to http://www.balabit.hu/static/syslog-ng/docs/x340.html#AEN450 ? Thanks again!!
participants (2)
-
Ohrberg, Mick
-
William Yodlowsky