Luca_55898
Aug 29, 2011Nimbostratus
Too many syslogs!
Hi,
I'm trying to get my LTM cluster to send only warning and above syslog messages to my external syslogs server. It is currently sending debugging messages and flooding my syslog server with useless info.
I can't seem to get the LTM to send anything higher than debug. I have this config:
b syslog include
SYSLOG - Include Data:
destination remote_server {
udp("10.15.5.7" port (514));
};
filter f_alllogs {
level (warn...emerg);
};
log {
source(local);
filter(f_alllogs);
destination(remote_server);
};
Any ideas whats going on?