6 Dec
2000
6 Dec
'00
10:05 p.m.
We're trying to configure syslog-ng to only accept logs from specific servers. Here is the code we've implemented within syslog-ng.conf. options { long_hostnames(off); sync(0); }; source src { sun-streams("/dev/log" door("/etc/.syslog_door")); internal(); udp(192.168.1.20,514); }; However, we get the following error when we start the daemon: parse error at 5 Parse error reading configuration file, exiting. The objective is to only allow certain hosts to log to this server. Any help would be appreciated. Sami