]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/syslogd/syslog.conf.5
This commit was generated by cvs2svn to compensate for changes in r157191,
[FreeBSD/FreeBSD.git] / usr.sbin / syslogd / syslog.conf.5
1 .\" Copyright (c) 1990, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)syslog.conf.5       8.1 (Berkeley) 6/9/93
29 .\" $FreeBSD$
30 .\"
31 .Dd June 9, 1993
32 .Dt SYSLOG.CONF 5
33 .Os
34 .Sh NAME
35 .Nm syslog.conf
36 .Nd
37 .Xr syslogd 8
38 configuration file
39 .Sh DESCRIPTION
40 The
41 .Nm
42 file is the configuration file for the
43 .Xr syslogd 8
44 program.
45 It consists of
46 blocks of lines separated by
47 .Em program
48 and
49 .Em hostname
50 specifications (separations appear alone on their lines),
51 with each line containing two fields: the
52 .Em selector
53 field which specifies the types of messages and priorities to which the
54 line applies, and an
55 .Em action
56 field which specifies the action to be taken if a message
57 .Xr syslogd 8
58 receives matches the selection criteria.
59 The
60 .Em selector
61 field is separated from the
62 .Em action
63 field by one or more tab characters or spaces.
64 .Pp
65 Note that if you use spaces as separators, your
66 .Nm
67 might be incompatible with other Unices or Unix-like systems.
68 This functionality was added for ease of configuration
69 (e.g.\& it is possible to cut-and-paste into
70 .Nm ) ,
71 and to avoid possible mistakes.
72 This change however preserves
73 backwards compatibility with the old style of
74 .Nm
75 (i.e., tab characters only).
76 .Pp
77 The
78 .Em selectors
79 are encoded as a
80 .Em facility ,
81 a period
82 .Pq Dq \&. ,
83 an optional set of comparison flags
84 .Pq Oo \&! Oc Op <=> ,
85 and a
86 .Em level ,
87 with no intervening white-space.
88 Both the
89 .Em facility
90 and the
91 .Em level
92 are case insensitive.
93 .Pp
94 The
95 .Em facility
96 describes the part of the system generating the message, and is one of
97 the following keywords: auth, authpriv, console, cron, daemon, ftp, kern,
98 lpr, mail, mark, news, ntp, security, syslog, user, uucp and local0 through
99 local7.
100 These keywords (with the exception of mark) correspond to
101 similar
102 .Dq Dv LOG_
103 values specified to the
104 .Xr openlog 3
105 and
106 .Xr syslog 3
107 library routines.
108 .Pp
109 The
110 .Em comparison flags
111 may be used to specify exactly what is logged.
112 The default comparison is
113 .Dq =>
114 (or, if you prefer,
115 .Dq >= ) ,
116 which means that messages from the specified
117 .Em facility
118 list, and of a priority
119 level equal to or greater than
120 .Em level
121 will be logged.
122 Comparison flags beginning with
123 .Dq Li \&!
124 will have their logical sense inverted.
125 Thus
126 .Dq !=info
127 means all levels except info and
128 .Dq !notice
129 has the same meaning as
130 .Dq <notice .
131 .Pp
132 The
133 .Em level
134 describes the severity of the message, and is a keyword from the
135 following ordered list (higher to lower): emerg, alert, crit, err,
136 warning, notice, info and debug.
137 These keywords correspond to
138 similar
139 .Dq Dv LOG_
140 values specified to the
141 .Xr syslog 3
142 library routine.
143 .Pp
144 Each block of lines is separated from the previous block by a
145 .Em program
146 or
147 .Em hostname
148 specification.
149 A block will only log messages corresponding to the most recent
150 .Em program
151 and
152 .Em hostname
153 specifications given.
154 Thus, with a block which selects
155 .Ql ppp
156 as the
157 .Em program ,
158 directly followed by a block that selects messages from the
159 .Em hostname
160 .Ql dialhost ,
161 the second block will only log messages
162 from the
163 .Xr ppp 8
164 program on dialhost.
165 .Pp
166 A
167 .Em program
168 specification is a line beginning with
169 .Ql #!prog
170 or
171 .Ql !prog
172 (the former is for compatibility with the previous syslogd, if one is sharing
173 .Nm
174 files, for example)
175 and the following blocks will be associated with calls to
176 .Xr syslog 3
177 from that specific program.
178 A
179 .Em program
180 specification for
181 .Ql foo
182 will also match any message logged by the kernel with the prefix
183 .Ql "foo: " .
184 The
185 .Ql #!+prog
186 or
187 .Ql !+prog
188 specification works just like the previous one,
189 and the
190 .Ql #!-prog
191 or
192 .Ql !-prog
193 specification will match any message but the ones from that
194 program.
195 Multiple programs may be listed, separated by commas:
196 .Ql !prog1,prog2
197 matches messages from either program, while
198 .Ql !-prog1,prog2
199 matches all messages but those from
200 .Ql prog1
201 or
202 .Ql prog2 .
203 .Pp
204 A
205 .Em hostname
206 specification of the form
207 .Ql #+hostname
208 or
209 .Ql +hostname
210 means the following blocks will be applied to messages
211 received from the specified hostname.
212 Alternatively, the
213 .Em hostname
214 specification
215 .Ql #-hostname
216 or
217 .Ql -hostname
218 causes the following blocks to be applied to messages
219 from any host but the one specified.
220 If the hostname is given as
221 .Ql @ ,
222 the local hostname will be used.
223 As for program specifications, multiple comma-separated
224 values may be specified for hostname specifications.
225 .Pp
226 A
227 .Em program
228 or
229 .Em hostname
230 specification may be reset by giving the program or hostname as
231 .Ql * .
232 .Pp
233 See
234 .Xr syslog 3
235 for further descriptions of both the
236 .Em facility
237 and
238 .Em level
239 keywords and their significance.
240 It is preferred that selections be made on
241 .Em facility
242 rather than
243 .Em program ,
244 since the latter can easily vary in a networked environment.
245 In some cases,
246 though, an appropriate
247 .Em facility
248 simply does not exist.
249 .Pp
250 If a received message matches the specified
251 .Em facility
252 and is of the specified
253 .Em level
254 .Em (or a higher level) ,
255 and the first word in the message after the date matches the
256 .Em program ,
257 the action specified in the
258 .Em action
259 field will be taken.
260 .Pp
261 Multiple
262 .Em selectors
263 may be specified for a single
264 .Em action
265 by separating them with semicolon
266 .Pq Dq \&;
267 characters.
268 It is important to note, however, that each
269 .Em selector
270 can modify the ones preceding it.
271 .Pp
272 Multiple
273 .Em facilities
274 may be specified for a single
275 .Em level
276 by separating them with comma
277 .Pq Dq \&,
278 characters.
279 .Pp
280 An asterisk
281 .Pq Dq *
282 can be used to specify all
283 .Em facilities ,
284 all
285 .Em levels ,
286 or all
287 .Em programs .
288 .Pp
289 The special
290 .Em facility
291 .Dq mark
292 receives a message at priority
293 .Dq info
294 every 20 minutes
295 (see
296 .Xr syslogd 8 ) .
297 This is not enabled by a
298 .Em facility
299 field containing an asterisk.
300 .Pp
301 The special
302 .Em level
303 .Dq none
304 disables a particular
305 .Em facility .
306 .Pp
307 The
308 .Em action
309 field of each line specifies the action to be taken when the
310 .Em selector
311 field selects a message.
312 There are five forms:
313 .Bl -bullet
314 .It
315 A pathname (beginning with a leading slash).
316 Selected messages are appended to the file.
317 .Pp
318 To ensure that kernel messages are written to disk promptly,
319 .Nm
320 calls
321 .Xr fsync 2
322 after writing messages from the kernel.
323 Other messages are not synced explicitly.
324 You may prefix a pathname with the minus sign,
325 .Dq - ,
326 to forego syncing the specified file after every kernel message.
327 Note that you might lose information if the system crashes
328 immediately following a write attempt.
329 Nevertheless, using the
330 .Dq -
331 option may improve performance,
332 especially if the kernel is logging many messages.
333 .It
334 A hostname (preceded by an at
335 .Pq Dq @
336 sign).
337 Selected messages are forwarded to the
338 .Xr syslogd 8
339 program on the named host.
340 .It
341 A comma separated list of users.
342 Selected messages are written to those users
343 if they are logged in.
344 .It
345 An asterisk.
346 Selected messages are written to all logged-in users.
347 .It
348 A vertical bar
349 .Pq Dq \&| ,
350 followed by a command to pipe the selected
351 messages to.
352 The command is passed to
353 .Xr sh 1
354 for evaluation, so usual shell metacharacters or input/output
355 redirection can occur.
356 (Note however that redirecting
357 .Xr stdio 3
358 buffered output from the invoked command can cause additional delays,
359 or even lost output data in case a logging subprocess exited with a
360 signal.)
361 The command itself runs with
362 .Em stdout
363 and
364 .Em stderr
365 redirected to
366 .Pa /dev/null .
367 Upon receipt of a
368 .Dv SIGHUP ,
369 .Xr syslogd 8
370 will close the pipe to the process.
371 If the process did not exit
372 voluntarily, it will be sent a
373 .Dv SIGTERM
374 signal after a grace period of up to 60 seconds.
375 .Pp
376 The command will only be started once data arrives that should be piped
377 to it.
378 If it exited later, it will be restarted as necessary.
379 So if it
380 is desired that the subprocess should get exactly one line of input only
381 (which can be very resource-consuming if there are a lot of messages
382 flowing quickly), this can be achieved by exiting after just one line of
383 input.
384 If necessary, a script wrapper can be written to this effect.
385 .Pp
386 Unless the command is a full pipeline, it is probably useful to
387 start the command with
388 .Em exec
389 so that the invoking shell process does not wait for the command to
390 complete.
391 Warning: the process is started under the UID invoking
392 .Xr syslogd 8 ,
393 normally the superuser.
394 .El
395 .Pp
396 Blank lines and lines whose first non-blank character is a hash
397 .Pq Dq #
398 character are ignored.
399 .Sh IMPLEMENTATION NOTES
400 The
401 .Dq kern
402 facility is usually reserved for messages
403 generated by the local kernel.
404 Other messages logged with facility
405 .Dq kern
406 are usually translated to facility
407 .Dq user .
408 This translation can be disabled;
409 see
410 .Xr syslogd 8
411 for details.
412 .Sh FILES
413 .Bl -tag -width /etc/syslog.conf -compact
414 .It Pa /etc/syslog.conf
415 .Xr syslogd 8
416 configuration file
417 .El
418 .Sh EXAMPLES
419 A configuration file might appear as follows:
420 .Bd -literal
421 # Log all kernel messages, authentication messages of
422 # level notice or higher, and anything of level err or
423 # higher to the console.
424 # Don't log private authentication messages!
425 *.err;kern.*;auth.notice;authpriv.none  /dev/console
426
427 # Log anything (except mail) of level info or higher.
428 # Don't log private authentication messages!
429 *.info;mail.none;authpriv.none          /var/log/messages
430
431 # Log daemon messages at debug level only
432 daemon.=debug                                           /var/log/daemon.debug
433
434 # The authpriv file has restricted access.
435 authpriv.*                                              /var/log/secure
436
437 # Log all the mail messages in one place.
438 mail.*                                                  /var/log/maillog
439
440 # Everybody gets emergency messages, plus log them on another
441 # machine.
442 *.emerg                                                 *
443 *.emerg                                                 @arpa.berkeley.edu
444
445 # Root and Eric get alert and higher messages.
446 *.alert                                                 root,eric
447
448 # Save mail and news errors of level err and higher in a
449 # special file.
450 uucp,news.crit                                          /var/log/spoolerr
451
452 # Pipe all authentication messages to a filter.
453 auth.*                                  |exec /usr/local/sbin/authfilter
454
455 # Save ftpd transactions along with mail and news
456 !ftpd
457 *.*                                                     /var/log/spoolerr
458
459 # Log all security messages to a separate file.
460 security.*                                              /var/log/security
461
462 # Log all writes to /dev/console to a separate file.
463 console.*                                               /var/log/console.log
464
465 # Log ipfw messages without syncing after every message.
466 !ipfw
467 *.*                                                     -/var/log/ipfw
468 .Ed
469 .Sh SEE ALSO
470 .Xr syslog 3 ,
471 .Xr syslogd 8
472 .Sh BUGS
473 The effects of multiple
474 .Em selectors
475 are sometimes not intuitive.
476 For example
477 .Dq mail.crit,*.err
478 will select
479 .Dq mail
480 facility messages at the level of
481 .Dq err
482 or higher, not at the level of
483 .Dq crit
484 or higher.
485 .Pp
486 In networked environments, note that not all operating systems
487 implement the same set of facilities.
488 The facilities
489 authpriv, cron, ftp, and ntp that are known to this implementation
490 might be absent on the target system.
491 Even worse, DEC UNIX uses
492 facility number 10 (which is authpriv in this implementation) to
493 log events for their AdvFS file system.