Forum Discussion
dan_19334
Nimbostratus
Sep 22, 2008Syslog off box via TCP and stop writing to disk
We would like to remote syslog off the LTM via TCP for guaranteed delivery and also prevent the messages from writing to disk. In order to get TCP versus UDP we stream the logs through the local sysl...
Ed_Hammond_2611
Nimbostratus
Sep 26, 2008You need to add the exclusion rules to the syslog-ng.conf file on the LTM lines. For example:
filter f_local0 {
facility(local0) and level(info..emerg) and not match(": Rule ") ;
};
destination d_ltm {
file("/var/log/ltm" create_dirs(yes));
};
log {
source(local);
filter(f_local0);
destination(d_ltm);
};
Note the and not match(": Rule ") is what you need.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects