Remote Logging
On the client, put the following in /etc/syslog-ng/syslog-ng.conf.in:
destination tologhost { udp(10.0.0.254 port(514)); };
log { source(src); destination(tologhost); };
Next run SuSEconfig –module syslog-ng to activate the changes
On the Log server, add the following:
source network { udp(ip(”10.0.0.254F) port(514));};
destination digitalair { file(”/var/log/$HOST”); };
log { source(network); destination(digitalair); };
run SuSEconfig –module syslog-ng to activate the changes