I changed the logging package from rsyslog to syslog-ng and the configuration to a master - client.
Now sends all the utcaX clients her log Infomation to the exflutcadev Master.
apt-get autoremove rsyslog
dpkg –P rsyslog
apt-get install syslog-ng.
change the configuration at the configfile:
/etc/syslog-ng/syslog-ng.conf
Put in:
destination d_exflutcadev { udp("192.168.81.200" port(514)); };
log { source(s_src); filter(f_messages); destination (d_exflutcadev); };
|