Browse Community
Help
Log In
Responses(4)
Solutions(2)
TomasDC
21 Posts
0
May 20th, 2014 07:00
Hello,
Any one make working Dell 5548 syslog with linux rsyslog 5.8.xx?
Best regards,
Tomas
May 21st, 2014 06:00
Problem fixed with syslog-ng. Do not parse incoming messages. Example:
source s_network {
syslog(ip(0.0.0.0.) transport("udp") port(514) flags(no-parse));
};
destination d_dell5548 { file("/var/log/dell5548.log");};
filter f_dell5548 { host("192.168.0.*]"); };
log { source(s_network); filter(f_dell5548); destination(d_dell5548); };
DELL-Josh Cr
Moderator
•
9.5K Posts
May 16th, 2014 08:00
Hi Tomas,
Do you know if it was doing it on the previous version of the firmware that you had installed?
May 19th, 2014 07:00
I tested more with various firmwares. It is the same. So it is problem not of the switch. It is problems with rsylog daemon. It wrong interpret % symbol :(
Dell Support Resources
View All
Top
TomasDC
21 Posts
0
May 20th, 2014 07:00
Hello,
Any one make working Dell 5548 syslog with linux rsyslog 5.8.xx?
Best regards,
Tomas
TomasDC
21 Posts
0
May 21st, 2014 06:00
Hello,
Problem fixed with syslog-ng. Do not parse incoming messages. Example:
source s_network {
syslog(ip(0.0.0.0.) transport("udp") port(514) flags(no-parse));
};
destination d_dell5548 { file("/var/log/dell5548.log");};
filter f_dell5548 { host("192.168.0.*]"); };
log { source(s_network); filter(f_dell5548); destination(d_dell5548); };
DELL-Josh Cr
Moderator
•
9.5K Posts
0
May 16th, 2014 08:00
Hi Tomas,
Do you know if it was doing it on the previous version of the firmware that you had installed?
TomasDC
21 Posts
0
May 19th, 2014 07:00
Hello,
I tested more with various firmwares. It is the same. So it is problem not of the switch. It is problems with rsylog daemon. It wrong interpret % symbol :(