]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - rsyslog/rsyslog.conf
glibc: Update to 2.20
[people/ms/ipfire-3.x.git] / rsyslog / rsyslog.conf
CommitLineData
3354f749
MT
1# rsyslog v5 configuration file
2
3# For more information see /usr/share/doc/rsyslog-*/rsyslog_conf.html
4# If you experience problems, see http://www.rsyslog.com/doc/troubleshoot.html
5
6#### MODULES ####
7
8$ModLoad imuxsock # provides support for local system logging (e.g. via logger command)
9$ModLoad imklog # provides kernel logging support (previously done by rklogd)
10#$ModLoad immark # provides --MARK-- message capability
11
12# Provides UDP syslog reception
13#$ModLoad imudp
14#$UDPServerRun 514
15
16# Provides TCP syslog reception
17#$ModLoad imtcp
18#$InputTCPServerRun 514
19
20
21#### GLOBAL DIRECTIVES ####
22
23# Use default timestamp format
24$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
25
26# File syncing capability is disabled by default. This feature is usually not required,
27# not useful and an extreme performance hit
28#$ActionFileEnableSync on
29
30# Include all config files in /etc/rsyslog.d/
31$IncludeConfig /etc/rsyslog.d/*.conf
32
33
34#### RULES ####
35
36# Log all kernel messages to the console.
37# Logging much else clutters up the screen.
38#kern.* /dev/console
39
40# Log anything (except mail) of level info or higher.
41# Don't log private authentication messages!
42*.info;mail.none;authpriv.none;cron.none /var/log/messages
43
44# The authpriv file has restricted access.
45authpriv.* /var/log/secure
46
47# Log all the mail messages in one place.
48mail.* -/var/log/maillog
49
50
51# Log cron stuff
52cron.* /var/log/cron
53
54# Everybody gets emergency messages
55*.emerg *
56
57# Save news errors of level crit and higher in a special file.
58uucp,news.crit /var/log/spooler
59
60# Save boot messages also to boot.log
61local7.* /var/log/boot.log
62
63
64# ### begin forwarding rule ###
65# The statement between the begin ... end define a SINGLE forwarding
66# rule. They belong together, do NOT split them. If you create multiple
67# forwarding rules, duplicate the whole block!
68# Remote Logging (we use TCP for reliable delivery)
69#
70# An on-disk queue is created for this action. If the remote host is
71# down, messages are spooled to disk and sent when it is up again.
72#$WorkDirectory /var/lib/rsyslog # where to place spool files
73#$ActionQueueFileName fwdRule1 # unique name prefix for spool files
74#$ActionQueueMaxDiskSpace 1g # 1gb space limit (use as much as possible)
75#$ActionQueueSaveOnShutdown on # save messages to disk on shutdown
76#$ActionQueueType LinkedList # run asynchronously
77#$ActionResumeRetryCount -1 # infinite retries if host is down
78# remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional
79#*.* @@remote-host:514
80# ### end of the forwarding rule ###