10 Jan
2001
10 Jan
'01
7:28 p.m.
[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