1994-05-26 05:23:31 +00:00
|
|
|
.\" Copyright (c) 1983, 1986, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 05:23:31 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)syslogd.8 8.1 (Berkeley) 6/6/93
|
1999-08-28 01:35:59 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-26 05:23:31 +00:00
|
|
|
.\"
|
2018-04-15 08:44:26 +00:00
|
|
|
.Dd April 15, 2018
|
1994-05-26 05:23:31 +00:00
|
|
|
.Dt SYSLOGD 8
|
2001-07-10 15:12:08 +00:00
|
|
|
.Os
|
1994-05-26 05:23:31 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm syslogd
|
|
|
|
.Nd log systems messages
|
|
|
|
.Sh SYNOPSIS
|
1997-04-29 09:09:40 +00:00
|
|
|
.Nm
|
2017-12-05 19:54:55 +00:00
|
|
|
.Op Fl 468ACcdFHkNnosTuv
|
1997-05-03 22:17:43 +00:00
|
|
|
.Op Fl a Ar allowed_peer
|
2001-09-01 08:42:49 +00:00
|
|
|
.Op Fl b Ar bind_address
|
1994-05-26 05:23:31 +00:00
|
|
|
.Op Fl f Ar config_file
|
2016-12-23 04:59:22 +00:00
|
|
|
.Op Fl l Oo Ar mode Ns \&: Oc Ns Ar path
|
1994-05-26 05:23:31 +00:00
|
|
|
.Op Fl m Ar mark_interval
|
Add RFC 5424 syslog message output to syslogd.
- Move all of the code responsible for transmitting log messages into a
separate function, fprintlog_write().
- Instead of manually modifying a list of iovecs, add a structure
iovlist with some helper functions.
- Alter the F_FORW (UDP message forwarding) case to also use iovecs like
the other cases. Use sendmsg() instead of sendto().
- In the case of F_FORW, truncate the message to a size dependent on the
address family (AF_INET, AF_INET6), as proposed by RFC 5426.
- Move all traditional message formatting into fprintlog_bsd(). Get rid
of some of the string copying and snprintf()'ing. Simply emit more
iovecs to get the job done.
- Increase ttymsg()'s limit of 7 iovecs to 32. Add a definition for this
limit, so it can be reused by iovlist.
- Add fprintlog_rfc5424() to emit RFC 5424 formatted log entries.
- Add a "-O" command line option to enable RFC 5424 formatting. It would
have been nicer if we supported "-o rfc5424", just like on NetBSD.
Unfortunately, the "-o" flag is already used for a different purpose
on FreeBSD.
- Don't truncate hostnames in the RFC 5424 case, as suggested by that
specific RFC.
For people interested in using this, this feature can be enabled by
adding the following line to /etc/rc.conf:
syslogd_flags="-s -O rfc5424"
Differential Revision: https://reviews.freebsd.org/D15011
2018-04-15 08:34:16 +00:00
|
|
|
.Op Fl O Ar format
|
2001-05-10 15:48:33 +00:00
|
|
|
.Op Fl P Ar pid_file
|
2002-10-18 11:42:21 +00:00
|
|
|
.Op Fl p Ar log_socket
|
2016-12-21 05:45:59 +00:00
|
|
|
.Op Fl S Ar logpriv_socket
|
1994-05-26 05:23:31 +00:00
|
|
|
.Sh DESCRIPTION
|
1997-04-29 09:09:40 +00:00
|
|
|
The
|
|
|
|
.Nm
|
2016-12-23 04:59:22 +00:00
|
|
|
utility reads and logs messages to the system console,
|
|
|
|
log files,
|
|
|
|
other
|
1994-05-26 05:23:31 +00:00
|
|
|
machines and/or users as specified by its configuration file.
|
2000-01-23 20:22:23 +00:00
|
|
|
.Pp
|
1994-05-26 05:23:31 +00:00
|
|
|
The options are as follows:
|
1997-10-20 12:55:49 +00:00
|
|
|
.Bl -tag -width indent
|
2000-12-16 18:25:48 +00:00
|
|
|
.It Fl 4
|
2002-07-14 14:47:15 +00:00
|
|
|
Force
|
2000-12-16 18:25:48 +00:00
|
|
|
.Nm
|
|
|
|
to use IPv4 addresses only.
|
|
|
|
.It Fl 6
|
2002-07-14 14:47:15 +00:00
|
|
|
Force
|
2000-12-16 18:25:48 +00:00
|
|
|
.Nm
|
|
|
|
to use IPv6 addresses only.
|
2008-05-14 00:22:21 +00:00
|
|
|
.It Fl 8
|
|
|
|
Tells
|
|
|
|
.Nm
|
2016-12-23 04:59:22 +00:00
|
|
|
not to interfere with 8-bit data.
|
|
|
|
Normally
|
2008-05-14 00:22:21 +00:00
|
|
|
.Nm
|
|
|
|
will replace C1 control characters
|
|
|
|
.Pq ISO 8859 and Unicode characters
|
|
|
|
with their
|
|
|
|
.Dq M- Ns Em x
|
|
|
|
equivalent.
|
|
|
|
Note, this option does not change the way
|
|
|
|
.Nm
|
|
|
|
alters control characters
|
|
|
|
.Pq see Xr iscntrl 3 .
|
|
|
|
They will always be replaced with their
|
|
|
|
.Dq ^ Ns Em x
|
|
|
|
equivalent.
|
2000-12-16 18:25:48 +00:00
|
|
|
.It Fl A
|
2001-08-27 11:04:09 +00:00
|
|
|
Ordinarily,
|
2000-12-16 18:25:48 +00:00
|
|
|
.Nm
|
|
|
|
tries to send the message to only one address
|
|
|
|
even if the host has more than one A or AAAA record.
|
|
|
|
If this option is specified,
|
|
|
|
.Nm
|
|
|
|
tries to send the message to all addresses.
|
1997-05-03 22:17:43 +00:00
|
|
|
.It Fl a Ar allowed_peer
|
|
|
|
Allow
|
|
|
|
.Ar allowed_peer
|
|
|
|
to log to this
|
1997-10-20 12:55:49 +00:00
|
|
|
.Nm
|
2004-07-02 23:13:00 +00:00
|
|
|
using UDP datagrams.
|
|
|
|
Multiple
|
1997-05-03 22:17:43 +00:00
|
|
|
.Fl a
|
|
|
|
options may be specified.
|
|
|
|
.Pp
|
2008-12-07 18:45:30 +00:00
|
|
|
The
|
|
|
|
.Ar allowed_peer
|
|
|
|
option may be any of the following:
|
2017-03-02 18:07:19 +00:00
|
|
|
.Bl -tag -width "ipaddr[/prefixlen][:service]XX"
|
2001-02-01 16:44:04 +00:00
|
|
|
.It Xo
|
|
|
|
.Sm off
|
|
|
|
.Ar ipaddr
|
2017-03-02 18:07:19 +00:00
|
|
|
.Op / Ar masklen
|
|
|
|
.Op \&: Ar service
|
|
|
|
.Pp
|
|
|
|
.Ar ipaddr
|
|
|
|
.Op / Ar prefixlen
|
2016-12-20 08:49:13 +00:00
|
|
|
.Op \&: Ar service
|
2001-02-01 16:44:04 +00:00
|
|
|
.Sm on
|
|
|
|
.Xc
|
1997-05-03 22:17:43 +00:00
|
|
|
Accept datagrams from
|
2017-03-02 18:07:19 +00:00
|
|
|
.Ar ipaddr ,
|
1997-05-03 22:17:43 +00:00
|
|
|
.Ar ipaddr
|
2017-03-02 18:07:19 +00:00
|
|
|
can be specified as an IPv4 address or as an IPv6
|
|
|
|
address enclosed with
|
2001-02-26 09:05:48 +00:00
|
|
|
.Ql \&[
|
2000-12-16 18:25:48 +00:00
|
|
|
and
|
|
|
|
.Ql \&] .
|
|
|
|
If specified,
|
1997-05-03 22:17:43 +00:00
|
|
|
.Ar service
|
|
|
|
is the name or number of an UDP service (see
|
2000-12-27 15:30:30 +00:00
|
|
|
.Xr services 5 )
|
2004-07-02 23:13:00 +00:00
|
|
|
the source packet must belong to.
|
|
|
|
A
|
1997-05-03 22:17:43 +00:00
|
|
|
.Ar service
|
|
|
|
of
|
|
|
|
.Ql \&*
|
2017-03-04 06:19:41 +00:00
|
|
|
accepts UDP packets from any source port.
|
2004-07-02 23:13:00 +00:00
|
|
|
The default
|
1997-05-03 22:17:43 +00:00
|
|
|
.Ar service
|
|
|
|
is
|
|
|
|
.Ql syslog .
|
2000-12-16 18:25:48 +00:00
|
|
|
If
|
|
|
|
.Ar ipaddr
|
|
|
|
is IPv4 address, a missing
|
1997-05-03 22:17:43 +00:00
|
|
|
.Ar masklen
|
|
|
|
will be substituted by the historic class A or class B netmasks if
|
|
|
|
.Ar ipaddr
|
2016-12-23 04:59:22 +00:00
|
|
|
belongs into the address range of class A or B,
|
|
|
|
respectively,
|
|
|
|
or by 24 otherwise.
|
2004-07-02 23:13:00 +00:00
|
|
|
If
|
2000-12-16 18:25:48 +00:00
|
|
|
.Ar ipaddr
|
2016-12-23 04:59:22 +00:00
|
|
|
is IPv6 address,
|
|
|
|
a missing
|
2000-12-16 18:25:48 +00:00
|
|
|
.Ar masklen
|
|
|
|
will be substituted by 128.
|
2001-02-01 16:44:04 +00:00
|
|
|
.It Xo
|
|
|
|
.Sm off
|
2016-12-20 08:49:13 +00:00
|
|
|
.Ar domainname Op \&: Ar service
|
2001-02-01 16:44:04 +00:00
|
|
|
.Sm on
|
|
|
|
.Xc
|
1997-05-03 22:17:43 +00:00
|
|
|
Accept datagrams where the reverse address lookup yields
|
|
|
|
.Ar domainname
|
2004-07-02 23:13:00 +00:00
|
|
|
for the sender address.
|
|
|
|
The meaning of
|
1997-05-03 22:17:43 +00:00
|
|
|
.Ar service
|
|
|
|
is as explained above.
|
|
|
|
.Ar domainname
|
2016-12-21 05:45:59 +00:00
|
|
|
can contain special characters of a shell-style pattern such as
|
|
|
|
.Ql Li \&* .
|
1997-05-03 22:17:43 +00:00
|
|
|
.El
|
2001-06-06 12:48:22 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fl a
|
|
|
|
options are ignored if the
|
|
|
|
.Fl s
|
|
|
|
option is also specified.
|
2010-08-07 16:20:12 +00:00
|
|
|
.It Xo
|
|
|
|
.Fl b
|
|
|
|
.Sm off
|
2016-12-20 08:49:13 +00:00
|
|
|
.Ar bind_address Op \&: Ar service
|
2010-08-07 16:20:12 +00:00
|
|
|
.Sm on
|
|
|
|
.Xc
|
|
|
|
.It Xo
|
|
|
|
.Fl b
|
|
|
|
.Sm off
|
2016-12-20 08:49:13 +00:00
|
|
|
.Li \&: Ar service
|
2010-08-07 16:20:12 +00:00
|
|
|
.Sm on
|
|
|
|
.Xc
|
|
|
|
Bind to a specific address and/or port.
|
|
|
|
The address can be specified as a hostname,
|
|
|
|
and the port as a service name.
|
|
|
|
If an IPv6 address is specified, it should be enclosed with
|
|
|
|
.Ql \&[
|
|
|
|
and
|
|
|
|
.Ql \&] .
|
|
|
|
The default
|
|
|
|
.Ar service
|
|
|
|
is
|
|
|
|
.Ql syslog .
|
2015-06-16 22:26:22 +00:00
|
|
|
This option can be specified multiple times to bind to
|
|
|
|
multiple addresses and/or ports.
|
2006-03-06 10:36:33 +00:00
|
|
|
.It Fl C
|
2016-12-23 04:59:22 +00:00
|
|
|
Create log files that do not exist
|
|
|
|
.Pq permission is set to Ql Li 0600 .
|
2002-01-05 07:34:52 +00:00
|
|
|
.It Fl c
|
|
|
|
Disable the compression of repeated instances of the same line
|
|
|
|
into a single line of the form
|
2002-01-10 15:16:58 +00:00
|
|
|
.Dq Li "last message repeated N times"
|
2002-01-05 07:34:52 +00:00
|
|
|
when the output is a pipe to another program.
|
2016-12-23 04:59:22 +00:00
|
|
|
If specified twice,
|
|
|
|
disable this compression in all cases.
|
1995-10-12 17:18:39 +00:00
|
|
|
.It Fl d
|
|
|
|
Put
|
1997-04-29 09:09:40 +00:00
|
|
|
.Nm
|
2004-07-02 23:13:00 +00:00
|
|
|
into debugging mode.
|
|
|
|
This is probably only of use to developers working on
|
2000-11-20 20:10:44 +00:00
|
|
|
.Nm .
|
2016-12-23 04:59:22 +00:00
|
|
|
.It Fl f Ar config_file
|
1994-05-26 05:23:31 +00:00
|
|
|
Specify the pathname of an alternate configuration file;
|
|
|
|
the default is
|
|
|
|
.Pa /etc/syslog.conf .
|
2015-03-03 20:07:59 +00:00
|
|
|
.It Fl F
|
|
|
|
Run
|
|
|
|
.Nm
|
2016-12-23 04:59:22 +00:00
|
|
|
in the foreground,
|
|
|
|
rather than going into daemon mode.
|
|
|
|
This is useful if some other process uses
|
2015-03-03 20:07:59 +00:00
|
|
|
.Xr fork 2
|
|
|
|
and
|
|
|
|
.Xr exec 3
|
|
|
|
to run
|
|
|
|
.Nm ,
|
|
|
|
and wants to monitor when and how it exits.
|
2017-12-05 19:54:55 +00:00
|
|
|
.It Fl H
|
|
|
|
When logging remote messages use hostname from the message (if supplied)
|
|
|
|
instead of using address from which the message was received.
|
2000-10-17 10:19:42 +00:00
|
|
|
.It Fl k
|
|
|
|
Disable the translation of
|
|
|
|
messages received with facility
|
2001-07-15 08:06:20 +00:00
|
|
|
.Dq kern
|
2000-10-17 10:19:42 +00:00
|
|
|
to facility
|
|
|
|
.Dq user .
|
|
|
|
Usually the
|
|
|
|
.Dq kern
|
|
|
|
facility is reserved for messages read directly from
|
|
|
|
.Pa /dev/klog .
|
2016-12-23 04:59:22 +00:00
|
|
|
.It Fl m Ar mark_interval
|
1997-04-29 09:09:40 +00:00
|
|
|
Select the number of minutes between
|
|
|
|
.Dq mark
|
2016-12-23 04:59:22 +00:00
|
|
|
messages;
|
|
|
|
the default is 20 minutes.
|
2011-07-14 07:33:53 +00:00
|
|
|
.It Fl N
|
2016-12-23 04:59:22 +00:00
|
|
|
Disable binding on UDP sockets.
|
|
|
|
RFC 3164 recommends that outgoing
|
|
|
|
.Nm
|
|
|
|
messages should originate from the privileged port,
|
|
|
|
this option
|
2011-07-14 07:33:53 +00:00
|
|
|
.Em disables
|
2016-12-23 04:59:22 +00:00
|
|
|
the recommended behavior.
|
|
|
|
This option inherits
|
2011-07-14 07:33:53 +00:00
|
|
|
.Fl s .
|
2000-07-29 04:02:34 +00:00
|
|
|
.It Fl n
|
2016-12-23 04:59:22 +00:00
|
|
|
Disable DNS query for every request.
|
2018-04-15 08:44:26 +00:00
|
|
|
.It Fl O Ar format
|
|
|
|
Select the output format of generated log messages.
|
|
|
|
The values
|
|
|
|
.Ar bsd
|
|
|
|
and
|
|
|
|
.Ar rfc3164
|
|
|
|
are used to generate RFC 3164 log messages.
|
|
|
|
The values
|
|
|
|
.Ar syslog
|
|
|
|
and
|
|
|
|
.Ar rfc5424
|
|
|
|
are used to generate RFC 5424 log messages,
|
|
|
|
having RFC 3339 timestamps with microsecond precision.
|
|
|
|
The default is to generate RFC 3164 log messages.
|
2001-11-27 20:02:18 +00:00
|
|
|
.It Fl o
|
|
|
|
Prefix kernel messages with the full kernel boot file as determined by
|
|
|
|
.Xr getbootfile 3 .
|
|
|
|
Without this, the kernel message prefix is always
|
2001-12-08 16:17:49 +00:00
|
|
|
.Dq Li kernel: .
|
2016-12-23 04:59:22 +00:00
|
|
|
.It Fl p Ar log_socket
|
1998-06-25 19:39:19 +00:00
|
|
|
Specify the pathname of an alternate log socket to be used instead;
|
1994-05-26 05:23:31 +00:00
|
|
|
the default is
|
1996-10-23 20:17:57 +00:00
|
|
|
.Pa /var/run/log .
|
2016-12-23 04:59:22 +00:00
|
|
|
When a single
|
|
|
|
.Fl p
|
2017-03-02 18:07:19 +00:00
|
|
|
option is specified,
|
2016-12-23 04:59:22 +00:00
|
|
|
the default pathname is replaced with the specified one.
|
|
|
|
When two or more
|
|
|
|
.Fl p
|
|
|
|
options are specified,
|
|
|
|
the remaining pathnames are treated as additional log sockets.
|
|
|
|
.It Fl P Ar pid_file
|
2001-05-16 09:43:48 +00:00
|
|
|
Specify an alternative file in which to store the process ID.
|
2001-05-10 15:48:33 +00:00
|
|
|
The default is
|
|
|
|
.Pa /var/run/syslog.pid .
|
2016-12-23 04:59:22 +00:00
|
|
|
.It Fl S Ar logpriv_socket
|
2005-04-13 03:19:41 +00:00
|
|
|
Specify the pathname of an alternate log socket for privileged
|
2016-12-23 04:59:22 +00:00
|
|
|
applications to be used instead;
|
|
|
|
the default is
|
2005-04-13 03:19:41 +00:00
|
|
|
.Pa /var/run/logpriv .
|
2016-12-23 04:59:22 +00:00
|
|
|
When a single
|
|
|
|
.Fl S
|
2017-03-02 18:07:19 +00:00
|
|
|
option is specified,
|
2016-12-23 04:59:22 +00:00
|
|
|
the default pathname is replaced with the specified one.
|
|
|
|
When two or more
|
|
|
|
.Fl S
|
|
|
|
options are specified,
|
|
|
|
the remaining pathnames are treated as additional log sockets.
|
|
|
|
.It Fl l Oo Ar mode Ns \&: Oc Ns Ar path
|
1998-06-25 19:39:19 +00:00
|
|
|
Specify a location where
|
2000-01-23 20:22:23 +00:00
|
|
|
.Nm
|
1998-06-25 19:39:19 +00:00
|
|
|
should place an additional log socket.
|
|
|
|
The primary use for this is to place additional log sockets in
|
2000-02-14 13:26:57 +00:00
|
|
|
.Pa /var/run/log
|
1998-06-25 19:39:19 +00:00
|
|
|
of various chroot filespaces.
|
2016-12-23 04:59:22 +00:00
|
|
|
File permissions for socket can be specified in octal representation in
|
|
|
|
.Ar mode ,
|
|
|
|
delimited with a colon.
|
|
|
|
The socket location must be specified as an absolute pathname in
|
|
|
|
.Ar path .
|
1997-05-03 22:17:43 +00:00
|
|
|
.It Fl s
|
2004-07-02 23:13:00 +00:00
|
|
|
Operate in secure mode.
|
|
|
|
Do not log messages from remote machines.
|
2016-12-23 04:59:22 +00:00
|
|
|
If specified twice,
|
|
|
|
no network socket will be opened at all,
|
|
|
|
which also disables logging to remote machines.
|
2008-09-25 09:28:18 +00:00
|
|
|
.It Fl T
|
|
|
|
Always use the local time and date for messages received from the network,
|
|
|
|
instead of the timestamp field supplied in the message by the remote host.
|
2017-03-02 18:07:19 +00:00
|
|
|
This is useful if some of the originating hosts cannot keep time properly
|
2008-09-25 09:28:18 +00:00
|
|
|
or are unable to generate a correct timestamp.
|
1998-07-22 06:15:19 +00:00
|
|
|
.It Fl u
|
2004-07-02 23:13:00 +00:00
|
|
|
Unique priority logging.
|
|
|
|
Only log messages at the specified priority.
|
2016-12-23 04:59:22 +00:00
|
|
|
Without this option,
|
|
|
|
messages at the stated priority or higher are logged.
|
1998-07-22 06:15:19 +00:00
|
|
|
This option changes the default comparison from
|
|
|
|
.Dq =>
|
|
|
|
to
|
|
|
|
.Dq = .
|
|
|
|
.It Fl v
|
2004-07-02 23:13:00 +00:00
|
|
|
Verbose logging.
|
2016-12-23 04:59:22 +00:00
|
|
|
If specified once,
|
|
|
|
the numeric facility and priority are
|
2004-07-02 23:13:00 +00:00
|
|
|
logged with each locally-written message.
|
|
|
|
If specified more than once,
|
1998-07-22 06:15:19 +00:00
|
|
|
the names of the facility and priority are logged with each locally-written
|
|
|
|
message.
|
1994-05-26 05:23:31 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
1997-04-29 09:09:40 +00:00
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 14:47:15 +00:00
|
|
|
utility reads its configuration file when it starts up and whenever it
|
1994-05-26 05:23:31 +00:00
|
|
|
receives a hangup signal.
|
|
|
|
For information on the format of the configuration file,
|
|
|
|
see
|
|
|
|
.Xr syslog.conf 5 .
|
|
|
|
.Pp
|
1997-04-29 09:09:40 +00:00
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 14:47:15 +00:00
|
|
|
utility reads messages from the
|
2002-11-27 15:31:08 +00:00
|
|
|
.Ux
|
2004-11-04 23:09:57 +00:00
|
|
|
domain sockets
|
|
|
|
.Pa /var/run/log
|
|
|
|
and
|
|
|
|
.Pa /var/run/logpriv ,
|
1994-05-26 05:23:31 +00:00
|
|
|
from an Internet domain socket specified in
|
|
|
|
.Pa /etc/services ,
|
|
|
|
and from the special device
|
|
|
|
.Pa /dev/klog
|
2016-12-23 04:59:22 +00:00
|
|
|
.Pq to read kernel messages .
|
1994-05-26 05:23:31 +00:00
|
|
|
.Pp
|
1997-04-29 09:09:40 +00:00
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 14:47:15 +00:00
|
|
|
utility creates its process ID file,
|
2001-05-10 15:48:33 +00:00
|
|
|
by default
|
1994-05-26 05:23:31 +00:00
|
|
|
.Pa /var/run/syslog.pid ,
|
|
|
|
and stores its process
|
2001-05-16 09:43:48 +00:00
|
|
|
ID there.
|
1994-05-26 05:23:31 +00:00
|
|
|
This can be used to kill or reconfigure
|
2000-11-20 20:10:44 +00:00
|
|
|
.Nm .
|
1994-05-26 05:23:31 +00:00
|
|
|
.Pp
|
|
|
|
The message sent to
|
1997-04-29 09:09:40 +00:00
|
|
|
.Nm
|
1994-05-26 05:23:31 +00:00
|
|
|
should consist of a single line.
|
2016-12-23 04:59:22 +00:00
|
|
|
The message can contain a priority code,
|
|
|
|
which should be a preceding
|
|
|
|
decimal number in angle braces,
|
|
|
|
for example,
|
2001-02-01 16:44:04 +00:00
|
|
|
.Sq Aq 5 .
|
1994-05-26 05:23:31 +00:00
|
|
|
This priority code should map into the priorities defined in the
|
|
|
|
include file
|
2003-09-08 19:57:22 +00:00
|
|
|
.In sys/syslog.h .
|
2001-07-18 13:31:08 +00:00
|
|
|
.Pp
|
|
|
|
For security reasons,
|
|
|
|
.Nm
|
2016-12-23 04:59:22 +00:00
|
|
|
will not append to log files that do not exist
|
|
|
|
.Po unless Fl C
|
|
|
|
option is specified
|
|
|
|
.Pc ;
|
2001-07-18 13:31:08 +00:00
|
|
|
therefore, they must be created manually before running
|
|
|
|
.Nm .
|
2008-09-25 09:28:18 +00:00
|
|
|
.Pp
|
|
|
|
The date and time are taken from the received message.
|
|
|
|
If the format of the timestamp field is incorrect,
|
|
|
|
time obtained from the local host is used instead.
|
2012-06-03 11:29:48 +00:00
|
|
|
This can be overridden by the
|
2008-09-25 09:28:18 +00:00
|
|
|
.Fl T
|
|
|
|
flag.
|
1994-05-26 05:23:31 +00:00
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /var/run/syslog.pid -compact
|
|
|
|
.It Pa /etc/syslog.conf
|
1997-10-20 12:55:49 +00:00
|
|
|
configuration file
|
1994-05-26 05:23:31 +00:00
|
|
|
.It Pa /var/run/syslog.pid
|
2001-05-16 09:43:48 +00:00
|
|
|
default process ID file
|
1996-10-23 20:17:57 +00:00
|
|
|
.It Pa /var/run/log
|
1997-10-20 12:55:49 +00:00
|
|
|
name of the
|
2002-11-27 15:31:08 +00:00
|
|
|
.Ux
|
1997-10-20 12:55:49 +00:00
|
|
|
domain datagram log socket
|
2004-11-04 23:09:57 +00:00
|
|
|
.It Pa /var/run/logpriv
|
|
|
|
.Ux
|
2004-11-18 13:37:33 +00:00
|
|
|
socket for privileged applications
|
1994-05-26 05:23:31 +00:00
|
|
|
.It Pa /dev/klog
|
1997-10-20 12:55:49 +00:00
|
|
|
kernel log device
|
1994-05-26 05:23:31 +00:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr logger 1 ,
|
|
|
|
.Xr syslog 3 ,
|
|
|
|
.Xr services 5 ,
|
2004-11-09 04:31:31 +00:00
|
|
|
.Xr syslog.conf 5 ,
|
|
|
|
.Xr newsyslog 8
|
1994-05-26 05:23:31 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
2002-07-14 14:47:15 +00:00
|
|
|
utility appeared in
|
1994-05-26 05:23:31 +00:00
|
|
|
.Bx 4.3 .
|
1997-05-03 22:17:43 +00:00
|
|
|
.Pp
|
|
|
|
The
|
1998-07-22 06:15:19 +00:00
|
|
|
.Fl a ,
|
|
|
|
.Fl s ,
|
|
|
|
.Fl u ,
|
1997-05-03 22:17:43 +00:00
|
|
|
and
|
1998-07-22 06:15:19 +00:00
|
|
|
.Fl v
|
1997-05-03 22:17:43 +00:00
|
|
|
options are
|
|
|
|
.Fx 2.2
|
|
|
|
extensions.
|
1995-10-12 17:18:39 +00:00
|
|
|
.Sh BUGS
|
|
|
|
The ability to log messages received in UDP packets is equivalent to
|
2016-12-23 04:59:22 +00:00
|
|
|
an unauthenticated remote disk-filling service,
|
|
|
|
and should probably be disabled by default.
|
2004-07-02 23:13:00 +00:00
|
|
|
Some sort of
|
1995-10-12 17:18:39 +00:00
|
|
|
.No inter- Ns Nm syslogd
|
2004-07-02 23:13:00 +00:00
|
|
|
authentication mechanism ought to be worked out.
|
2016-12-23 04:59:22 +00:00
|
|
|
To prevent the worst abuse,
|
|
|
|
use of the
|
1997-05-03 22:17:43 +00:00
|
|
|
.Fl a
|
|
|
|
option is therefore highly recommended.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fl a
|
2016-12-23 04:59:22 +00:00
|
|
|
matching algorithm does not pretend to be very efficient;
|
|
|
|
use of numeric IP addresses is faster than domain name comparison.
|
|
|
|
Since the allowed peer list is being walked linearly,
|
|
|
|
peer groups where frequent messages are being anticipated
|
|
|
|
from should be put early into the
|
1997-05-03 22:17:43 +00:00
|
|
|
.Fl a
|
|
|
|
list.
|
1996-10-28 08:25:13 +00:00
|
|
|
.Pp
|
|
|
|
The log socket was moved from
|
|
|
|
.Pa /dev
|
2002-12-12 17:26:04 +00:00
|
|
|
to ease the use of a read-only root file system.
|
2000-03-01 14:09:25 +00:00
|
|
|
This may confuse
|
1996-10-28 08:25:13 +00:00
|
|
|
some old binaries so that a symbolic link might be used for a
|
|
|
|
transitional period.
|