Syslog-NG

Main site: http://www.balabit.hu/en/downloads/syslog-ng/
Unofficial FAQ: http://www.campin.net/syslog-ng/faq.html
Misc. config info: http://www.campin.net/newlogcheck.html

Flexible and extensible syslog daemon. Stolen from JohnVanVoorhies notes.

syslog-ng.conf

source src {
        unix-dgram("/dev/log");
        internal();
        tcp();
        udp();
};

filter f_blurp_deny { host("blurp") and match("deny"); };

Configuration

source src { unix-stream("/dev/log");
                   internal();
                   pipe("/proc/kmsg");

Related Links


CategorySoftware

SyslogNg (last edited 2004-07-02 22:48:59 by AdamShand)