]> git.pld-linux.org Git - packages/syslog-ng.git/blame - syslog-ng.conf
- time to move to 2.0 - updated to 1.9.9
[packages/syslog-ng.git] / syslog-ng.conf
CommitLineData
9bb5922e 1#
e8348a61 2# Syslog-ng configuration for PLD Linux
9bb5922e 3#
e8348a61 4# See syslog-ng(8) and syslog-ng.conf(5) for more information.
9bb5922e 5#
6
e8348a61
JR
7options {
8 long_hostnames(off);
9 sync(0);
10 owner(root);
11 group(logs);
12 perm(0640);
13};
14
15source s_sys {
16 { pipe ("/proc/kmsg" log_prefix("kernel: ")); };
17 unix-stream("/dev/log");
18 internal();
19 max_connections(1024);
20};
9bb5922e 21
bc57df04 22# uncomment the line below if you want to setup syslog server
e8348a61 23#source s_net { udp(); };
69f7f14f 24
e8348a61 25#destination loghost { udp("loghost" port(514)); };
69f7f14f
JR
26
27destination kern { file("/var/log/kernel"); };
28destination messages { file("/var/log/messages"); };
29destination authlog { file("/var/log/secure"); };
30destination mail { file("/var/log/maillog"); };
31destination uucp { file("/var/log/spooler"); };
69f7f14f 32destination debug { file("/var/log/debug"); };
e8348a61
JR
33destination cron { file("/var/log/cron" owner(root) group(crontab) perm(0660)); };
34destination syslog { file("/var/log/syslog"); };
35destination daemon { file("/var/log/daemon"); };
36destination lpr { file("/var/log/lpr"); };
37destination user { file("/var/log/user"); };
38destination ppp { file("/var/log/ppp"); };
39destination ftp { file("/var/log/xferlog"); };
40destination audit { file("/var/log/audit"); };
41destination postgres { file("/var/log/pgsql"); };
42destination freshclam { file("/var/log/freshclam.log"); };
43
44# Log iptables messages to separate file
45destination iptables { file("/var/log/iptables"); };
46
69f7f14f 47destination console { usertty("root"); };
93386b4c 48#destination console_all { file("/dev/tty12"); };
69f7f14f
JR
49
50destination xconsole { pipe("/dev/xconsole"); };
51
2ed0e42e 52destination newscrit { file("/var/log/news/news.crit" owner(news) group(news)); };
21fda14b
JR
53destination newserr { file("/var/log/news/news.err" owner(news) group(news)); };
54destination newsnotice { file("/var/log/news/news.notice" owner(news) group(news)); };
69f7f14f 55
e8348a61
JR
56# Filters for standard syslog(3) facilities
57filter f_audit { facility(audit); };
58filter f_authpriv { facility(authpriv, auth); };
bc57df04 59filter f_cron { facility(cron); };
69f7f14f 60filter f_daemon { facility(daemon); };
e8348a61 61filter f_ftp { facility(ftp); };
bc57df04 62filter f_kern { facility(kern); };
69f7f14f
JR
63filter f_lpr { facility(lpr); };
64filter f_mail { facility(mail); };
e8348a61
JR
65filter f_news { facility(news); };
66filter f_syslog { facility(syslog); };
69f7f14f 67filter f_user { facility(user); };
e4b58b62 68filter f_uucp { facility(uucp); };
e8348a61
JR
69filter f_local0 { facility(local0); };
70filter f_local1 { facility(local1); };
71filter f_local2 { facility(local2); };
72filter f_local3 { facility(local3); };
73filter f_local4 { facility(local4); };
74filter f_local5 { facility(local5); };
75filter f_local6 { facility(local6); };
76filter f_local7 { facility(local7); };
77
c1e06d27 78# Filters for standard syslog(3) priorities
69f7f14f
JR
79filter p_debug { level(debug); };
80filter p_info { level(info); };
81filter p_notice { level(notice); };
82filter p_warn { level(warn); };
83filter p_err { level(err); };
84filter p_alert { level(alert); };
85filter p_crit { level(crit); };
86filter p_emergency { level(emerg); };
87
e8348a61
JR
88# Additional filters for specific programs/use
89filter f_freshclam { program(freshclam); };
90filter f_ppp { program(pppd) or program(chat); };
91filter f_postgres { program(postgres); };
92filter f_iptables { match("IN=[A-Za-z0-9]* OUT=[A-Za-z0-9]*"); };
93
94log { source(s_sys); filter(f_auth); destination(authlog); };
95log { source(s_sys); filter(f_cron); destination(cron); };
96log { source(s_sys); filter(f_daemon); destination(daemon); };
97log { source(s_sys); filter(f_ftp); destination(ftp); };
98log { source(s_sys); filter(f_kern); destination(kern); };
99log { source(s_sys); filter(f_lpr); destination(lpr); };
100log { source(s_sys); filter(f_mail); destination(mail); };
e8348a61
JR
101log { source(s_sys); filter(f_news); filter(p_crit); destination(uucp); };
102log { source(s_sys); filter(f_news); filter(p_crit); destination(newscrit); };
103log { source(s_sys); filter(f_news); filter(p_err); destination(newserr); };
104log { source(s_sys); filter(f_news); filter(p_warn); destination(newsnotice); };
105log { source(s_sys); filter(f_news); filter(p_notice); destination(newsnotice); };
106log { source(s_sys); filter(f_news); filter(p_info); destination(newsnotice); };
107log { source(s_sys); filter(f_news); filter(p_debug); destination(newsnotice); };
108log { source(s_sys); filter(f_syslog); destination(syslog); };
109log { source(s_sys); filter(f_user); destination(user); };
110log { source(s_sys); filter(f_uucp); destination(uucp); };
111
112log { source(s_sys); filter(p_debug); destination(debug); };
113
114log { source(s_sys); filter(f_daemon); filter(f_ppp); destination(ppp); };
115log { source(s_sys); filter(f_local6); filter(f_freshclam); destination(freshclam); };
116log { source(s_sys); filter(f_local0); filter(f_postgres); destination(postgres); };
117#log { source(s_sys); filter(f_iptables); destination(iptables); };
118
119log { source(s_sys); filter(p_emergency); destination(console); };
120#log { source(s_sys); destination(console_all); };
bc57df04
JB
121
122# This is a catchall statement, and should catch all messages which were not
123# accepted any of the previous statements.
e8348a61
JR
124log { source(s_sys); filter(DEFAULT); destination(messages); };
125
126# Network syslogging
127#log { source(s_sys); destination(loghost); };
This page took 0.042311 seconds and 4 git commands to generate.