OpenBSD CVS

CVS log for src/usr.sbin/syslogd/syslogd.8


[BACK] Up to [local] / src / usr.sbin / syslogd

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.61 / (download) - annotate - [select for diffs], Thu Jun 16 18:44:43 2022 UTC (23 months, 3 weeks ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, HEAD
Changes since 1.60: +4 -3 lines
Diff to previous 1.60 (colored)

OpenBSD syslogd(8) escapes binary data with vis(3).  Use the
VIS_NOSLASH option to avoid additional backslashes.  Although this
option prevents to decode binaries, it makes automatic post processing
easier.  Formats like JSON use backslash escaping themself, additional
escaping from syslogd would break SIEM systems.  vis protection was
introduced to avoid evil characters in log files and not to make
binary logging possible.
from Matthias Pitzl; OK deraadt@

Revision 1.60 / (download) - annotate - [select for diffs], Thu Sep 27 08:33:25 2018 UTC (5 years, 8 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.59: +5 -2 lines
Diff to previous 1.59 (colored)

Document how syslogd(8) escapes characters in log lines.
input jmc@; OK sthen@

Revision 1.59 / (download) - annotate - [select for diffs], Sun Sep 2 14:32:12 2018 UTC (5 years, 9 months ago) by bluhm
Branch: MAIN
Changes since 1.58: +16 -13 lines
Diff to previous 1.58 (colored)

Document how SIGHUP and log rotation works with syslogd(8).  Do not
mention the PID file.  While there, use .Nm consistently.
wording from schwarze@; deraadt@ cheloha@ millert@ agree

Revision 1.58 / (download) - annotate - [select for diffs], Sun Apr 8 18:57:39 2018 UTC (6 years, 2 months ago) by guenther
Branch: MAIN
Changes since 1.57: +3 -4 lines
Diff to previous 1.57 (colored)

AF_LOCAL was a failed attempt (by POSIX?) to seem less UNIX-specific, but
AF_UNIX is both the historical _and_ standard name, so prefer and recommend
it in the headers, manpages, and kernel.

ok miller@ deraadt@ schwarze@

Revision 1.57 / (download) - annotate - [select for diffs], Sat Jan 27 08:38:06 2018 UTC (6 years, 4 months ago) by anton
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.56: +5 -3 lines
Diff to previous 1.56 (colored)

Add missing `l' prefix to linker flag and markup SIGHUP; ok jmc@

Revision 1.56 / (download) - annotate - [select for diffs], Wed Jul 5 09:40:16 2017 UTC (6 years, 11 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.55: +9 -9 lines
Diff to previous 1.55 (colored)

Some documentation improvements:

- Fix TLS s/server/client/

- Use 'remote loghost' consistently, even if it's not clear to which
  endpoint this correspond.

- Replace 'forwarding' by 'sending' to remove the ambiguity about the
  inserted hostname.

- Do not use the word 'server' with 'socket' to avoid confusion with
  a TLS server.

- Prefer 'senders' than 'clients' when it comes to spoofing, to reduce
  one usage of the word 'client.

ok jmc@, bluhm@

Revision 1.55 / (download) - annotate - [select for diffs], Tue Apr 25 17:45:50 2017 UTC (7 years, 1 month ago) by bluhm
Branch: MAIN
Changes since 1.54: +6 -5 lines
Diff to previous 1.54 (colored)

Allow syslogd(8) to listen on multiple addresses for incomming TLS
connections.  This expands the feature from UDP and TCP to syslog
over TLS.
input jmc@; OK millert@

Revision 1.54 / (download) - annotate - [select for diffs], Mon Apr 17 14:18:44 2017 UTC (7 years, 1 month ago) by bluhm
Branch: MAIN
Changes since 1.53: +8 -3 lines
Diff to previous 1.53 (colored)

Add syslogd(8) option -r to suppress the summary line for pipe and
remote loghost as they are most commonly used for automated log
processing.  With -rr the "last message repeated" feature can be
disabled completely.
OK sthen@ deraadt@ jmc@

Revision 1.53 / (download) - annotate - [select for diffs], Mon Jan 2 15:58:02 2017 UTC (7 years, 5 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.52: +8 -2 lines
Diff to previous 1.52 (colored)

Syslogd accepted network input only for either IPv4 or IPv6.  To
overcome this limitation, allow to specify more than one listen
address for UDP and TCP.
input jmc@; OK deraadt@ millert@

Revision 1.52 / (download) - annotate - [select for diffs], Mon Oct 17 11:19:55 2016 UTC (7 years, 7 months ago) by bluhm
Branch: MAIN
Changes since 1.51: +2 -3 lines
Diff to previous 1.51 (colored)

Remove the artificial maximum number of unix domain sockets in
syslogd(8).  Just malloc(3) them dynamically which also gives a
more random address space layout.
OK deraadt@

Revision 1.51 / (download) - annotate - [select for diffs], Tue Oct 4 22:09:21 2016 UTC (7 years, 8 months ago) by bluhm
Branch: MAIN
Changes since 1.50: +6 -2 lines
Diff to previous 1.50 (colored)

When doing global remote logging and archiving, it is inconvenient
that the syslog timestamp does not contain the year and the timezone,
but has local time with daylight saving time.
Now with -Z syslogd(8) switches to RFC 5424 ISO format for timestamps.
Then all logging is also done in UTC.  Default is to keep local
time and BSD syslog RFC 3164 format.
BIG BIG BIG OK for the feature ajacoutot@; OK deraadt@

Revision 1.50 / (download) - annotate - [select for diffs], Sat Sep 24 11:32:25 2016 UTC (7 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.49: +7 -7 lines
Diff to previous 1.49 (colored)

sort FILES;

Revision 1.49 / (download) - annotate - [select for diffs], Sat Sep 24 11:30:59 2016 UTC (7 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.48: +6 -4 lines
Diff to previous 1.48 (colored)

improve DESCRIPTION;
from bluhm and myself

Revision 1.48 / (download) - annotate - [select for diffs], Fri Sep 23 19:05:55 2016 UTC (7 years, 8 months ago) by bluhm
Branch: MAIN
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

Revert a wording change.  Requested by jmc@

Revision 1.47 / (download) - annotate - [select for diffs], Fri Sep 23 16:29:28 2016 UTC (7 years, 8 months ago) by bluhm
Branch: MAIN
Changes since 1.46: +6 -5 lines
Diff to previous 1.46 (colored)

Add some more improvements from jmc@ to syslogd(8).

Revision 1.46 / (download) - annotate - [select for diffs], Fri Sep 23 15:46:39 2016 UTC (7 years, 8 months ago) by bluhm
Branch: MAIN
Changes since 1.45: +46 -27 lines
Diff to previous 1.45 (colored)

Document certificate handling in syslogd(8) man page.
Written together with jmc@

Revision 1.45 / (download) - annotate - [select for diffs], Fri Sep 23 12:04:25 2016 UTC (7 years, 8 months ago) by bluhm
Branch: MAIN
Changes since 1.44: +30 -36 lines
Diff to previous 1.44 (colored)

Improve syslogd(8) man page.
Written together with jmc@

Revision 1.44 / (download) - annotate - [select for diffs], Wed Sep 21 16:42:09 2016 UTC (7 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.43: +10 -11 lines
Diff to previous 1.43 (colored)

tweak previous;

Revision 1.43 / (download) - annotate - [select for diffs], Wed Sep 21 11:54:57 2016 UTC (7 years, 8 months ago) by bluhm
Branch: MAIN
Changes since 1.42: +15 -2 lines
Diff to previous 1.42 (colored)

Add an option to give syslogd a server CA that is used to validate
client certificates.  This prevent that malicious clients can send
fake messages.
OK deraadt@

Revision 1.42 / (download) - annotate - [select for diffs], Tue Jul 12 23:04:30 2016 UTC (7 years, 10 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.41: +4 -2 lines
Diff to previous 1.41 (colored)

Document that the syslogd options -c and -k must be used together.
OK jmc@

Revision 1.41 / (download) - annotate - [select for diffs], Tue Jul 12 09:47:25 2016 UTC (7 years, 10 months ago) by bluhm
Branch: MAIN
Changes since 1.40: +14 -2 lines
Diff to previous 1.40 (colored)

Add support for TLS client certificates in syslogd.  This allows a
remote server to verify that the log messages from our syslogd are
authentic.
From Kapetanakis Giannis; man page input jmc@; OK jung@ deraadt@

Revision 1.40 / (download) - annotate - [select for diffs], Thu Mar 31 15:53:25 2016 UTC (8 years, 2 months ago) by schwarze
Branch: MAIN
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored)

Don't use .Aq for syntax elements that require ASCII "<>".
Patch from Christian Heckendorf <mbie at ulmus dot me>.
OK jmc@ bentley@

Revision 1.39 / (download) - annotate - [select for diffs], Fri Oct 9 16:58:25 2015 UTC (8 years, 8 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.38: +21 -1 lines
Diff to previous 1.38 (colored)

If syslogd is started with -S, it accepts TLS connections to receive
encrypted messages.  The server certificates are taken from /etc/ssl
like relayd does.
OK benno@ beck@ deraadt@

Revision 1.38 / (download) - annotate - [select for diffs], Tue Jul 7 21:43:35 2015 UTC (8 years, 11 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.37: +2 -16 lines
Diff to previous 1.37 (colored)

Do not explain multiple times how to put brackets around IPv6
addresses in syslogd(8).  Using brackets to separate an IPv6 address
from the port number is common practice and we keep the text in
syslog.conf(5).
OK jmc@

Revision 1.37 / (download) - annotate - [select for diffs], Tue Jul 7 17:53:04 2015 UTC (8 years, 11 months ago) by bluhm
Branch: MAIN
Changes since 1.36: +17 -2 lines
Diff to previous 1.36 (colored)

When syslogd is invoked with -T listen_address, it creates a TCP
socket and accepts incomming messages.  At the moment, only RFC
6587 3.4.2. Non-Transparent-Framing format with new-line separator
is supprted for incomming messsages.  Outgoing messages are encoded
as 3.4.1. Octet Counting.  Autodetection of incomming format will
be implemented later.
OK deraadt@ jmc@ millert@

Revision 1.36 / (download) - annotate - [select for diffs], Tue Jun 30 12:03:32 2015 UTC (8 years, 11 months ago) by bluhm
Branch: MAIN
Changes since 1.35: +17 -1 lines
Diff to previous 1.35 (colored)

Add a -U command line switch for syslogd to specify an explict bind
address to receive UDP packets.  One advantge over -u and the *
sockets is that you can bind to localhost and divert the packets
with pf.  It is also possible to use a non standard port.
OK jung@ jmc@

Revision 1.35 / (download) - annotate - [select for diffs], Mon Jun 15 22:39:14 2015 UTC (8 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.34: +5 -5 lines
Diff to previous 1.34 (colored)

put -F before -f in the options list;

Revision 1.34 / (download) - annotate - [select for diffs], Mon Jun 15 21:42:15 2015 UTC (8 years, 11 months ago) by bluhm
Branch: MAIN
Changes since 1.33: +6 -3 lines
Diff to previous 1.33 (colored)

Implement a -F switch, that tells syslogd to stay in foreground.
OK benno@; input millert@; no objections deraadt@

Revision 1.33 / (download) - annotate - [select for diffs], Fri Jan 30 14:09:49 2015 UTC (9 years, 4 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.32: +11 -3 lines
Diff to previous 1.32 (colored)

Document the syslogd certificate validation options.
OK jmc@

Revision 1.32 / (download) - annotate - [select for diffs], Tue Jan 20 22:10:37 2015 UTC (9 years, 4 months ago) by bluhm
Branch: MAIN
Changes since 1.31: +4 -4 lines
Diff to previous 1.31 (colored)

Document how to send syslog messages over TCP or TLS.
OK jmc@

Revision 1.31 / (download) - annotate - [select for diffs], Mon Sep 8 00:43:42 2014 UTC (9 years, 9 months ago) by doug
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored)

Fix a syslogd regression when specifying all 20 additional log paths

bluhm@ found and fixed this bug.  This is a modified version of his
patch which makes the intention a little clearer.

ok bluhm@

Revision 1.30 / (download) - annotate - [select for diffs], Mon Aug 25 20:25:46 2014 UTC (9 years, 9 months ago) by bluhm
Branch: MAIN
Changes since 1.29: +11 -3 lines
Diff to previous 1.29 (colored)

Document the IPv4/IPv6 command line switches and protocol loghost
prefixes.
OK jmc@ henning@

Revision 1.29 / (download) - annotate - [select for diffs], Wed Jul 23 05:57:36 2014 UTC (9 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.28: +5 -3 lines
Diff to previous 1.28 (colored)

document that sendsyslog saves the day

Revision 1.28 / (download) - annotate - [select for diffs], Tue Jan 21 03:15:46 2014 UTC (10 years, 4 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.27: +4 -4 lines
Diff to previous 1.27 (colored)

obvious .Pa fixes; found with mandocdb(8)

Revision 1.27 / (download) - annotate - [select for diffs], Sun Feb 10 10:47:08 2013 UTC (11 years, 3 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.26: +4 -2 lines
Diff to previous 1.26 (colored)

-h includes RFC 3164 style hostnames when forwarding;
feedback and ok sthen@, mpf@

Revision 1.26 / (download) - annotate - [select for diffs], Thu Oct 22 15:02:13 2009 UTC (14 years, 7 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.25: +6 -6 lines
Diff to previous 1.25 (colored)

write UNIX-domain in a more consistent way; while here, replace a
few remaining ".Tn UNIX" macros with ".Ux" ones.

pointed out by ratchov@, thanks!

ok jmc@

Revision 1.25 / (download) - annotate - [select for diffs], Thu Oct 22 12:35:53 2009 UTC (14 years, 7 months ago) by sobrado
Branch: MAIN
Changes since 1.24: +4 -4 lines
Diff to previous 1.24 (colored)

use the UNIX-related macros (.At and .Ux) where appropriate.

ok jmc@

Revision 1.24 / (download) - annotate - [select for diffs], Thu May 31 19:20:29 2007 UTC (17 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

convert to new .Dd format;

Revision 1.23 / (download) - annotate - [select for diffs], Tue Mar 6 13:51:58 2007 UTC (17 years, 3 months ago) by henning
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.22: +4 -3 lines
Diff to previous 1.22 (colored)

mention log to pipe in the blurb here. the details are all in syslog.conf.5,
the syslogd.8 blurb has just a list.

Revision 1.22 / (download) - annotate - [select for diffs], Thu Jun 22 20:35:20 2006 UTC (17 years, 11 months ago) by ray
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.21: +5 -1 lines
Diff to previous 1.21 (colored)

CAVEATS
syslogd does not create files, it only logs to existing ones.

From millert@: http://marc.theaimsgroup.com/?m=106329875409953

``Good idea'' millert@, ``fine by me too'' jmc@

Revision 1.21 / (download) - annotate - [select for diffs], Thu Dec 2 21:58:57 2004 UTC (19 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.20: +8 -8 lines
Diff to previous 1.20 (colored)

group paragraphs more logically;
suggested by michael knudsen;

Revision 1.20 / (download) - annotate - [select for diffs], Mon Jan 5 09:45:49 2004 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.19: +17 -17 lines
Diff to previous 1.19 (colored)

sort options and SYNOPSIS;
sync usage();

Revision 1.19 / (download) - annotate - [select for diffs], Sun Jan 4 08:28:49 2004 UTC (20 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.18: +9 -2 lines
Diff to previous 1.18 (colored)

Buffered logging for syslogd. Logs may be stored in memory buffers and
extracted using a small client. Useful for diskless systems.
much feedback from deraadt@, canacar@, jmc@, jakob@ ; ok deraadt@

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jun 12 12:59:53 2003 UTC (21 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored)

- section reorder
- macro fixes
- kill whitespace at EOL
- new sentence, new line

Revision 1.17 / (download) - annotate - [select for diffs], Wed Jun 4 16:08:08 2003 UTC (21 years ago) by deraadt
Branch: MAIN
Changes since 1.16: +2 -6 lines
Diff to previous 1.16 (colored)

fix some more UCB term 3

Revision 1.16 / (download) - annotate - [select for diffs], Thu May 8 05:05:27 2003 UTC (21 years, 1 month ago) by millert
Branch: MAIN
Changes since 1.15: +3 -2 lines
Diff to previous 1.15 (colored)

.Xr newsyslog

Revision 1.15 / (download) - annotate - [select for diffs], Fri Feb 14 23:20:36 2003 UTC (21 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.14: +4 -2 lines
Diff to previous 1.14 (colored)

typos;

tftpd(8): tweak and ok millert@
tokenadm(8): tweak and ok millert@

Revision 1.14 / (download) - annotate - [select for diffs], Thu Nov 21 07:46:48 2002 UTC (21 years, 6 months ago) by cloder
Branch: MAIN
Changes since 1.13: +9 -2 lines
Diff to previous 1.13 (colored)

Add -n option to print message source addresses numerically rather than
symbolically.  This saves address->name lookups, which is nice on log
servers without a DNS cache.

millert@, jakob@ ok

Revision 1.13 / (download) - annotate - [select for diffs], Thu May 3 21:12:25 2001 UTC (23 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

fix typo; isaki@par.odn.ne.jp

Revision 1.12 / (download) - annotate - [select for diffs], Sun Apr 16 01:53:15 2000 UTC (24 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.11: +9 -1 lines
Diff to previous 1.11 (colored)

for the Nth time, the damn syslog socket is required

Revision 1.11 / (download) - annotate - [select for diffs], Sun Mar 19 17:57:16 2000 UTC (24 years, 2 months ago) by aaron
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored)

Remove hard sentence breaks. Add $OpenBSD$ tags where appropriate. Some other
cleanup along the way.

Revision 1.10 / (download) - annotate - [select for diffs], Sun May 23 14:11:38 1999 UTC (25 years ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-common
is used instead; kwesterback@home.com

Revision 1.9 / (download) - annotate - [select for diffs], Fri Apr 2 15:12:21 1999 UTC (25 years, 2 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

all .Nm macros should have an argument in SYNOPSIS; also misc cleanup

Revision 1.8 / (download) - annotate - [select for diffs], Thu Mar 11 21:08:03 1999 UTC (25 years, 3 months ago) by aaron
Branch: MAIN
Changes since 1.7: +28 -22 lines
Diff to previous 1.7 (colored)

cleanup

Revision 1.7 / (download) - annotate - [select for diffs], Wed Feb 11 02:28:32 1998 UTC (26 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.6: +14 -6 lines
Diff to previous 1.6 (colored)

syslogd gets a new -a argument: specify additional AF_UNIX log devices
syslogd should create & listen to. As in "syslogd -a /chroot/dev/log",
I'm sure you get the idea.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Dec 20 08:18:36 1996 UTC (27 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.5: +10 -4 lines
Diff to previous 1.5 (colored)

actually explain what -u does

Revision 1.5 / (download) - annotate - [select for diffs], Sat Jul 27 01:38:07 1996 UTC (27 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.4: +6 -8 lines
Diff to previous 1.4 (colored)

snprintf some more; also change -s to -u (-u is insecure mode, opens udp port)

Revision 1.4 / (download) - annotate - [select for diffs], Fri May 10 13:03:55 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.3: +6 -1 lines
Diff to previous 1.3 (colored)

doc flags better

Revision 1.3 / (download) - annotate - [select for diffs], Fri Jan 5 14:00:22 1996 UTC (28 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +5 -5 lines
Diff to previous 1.2 (colored)

sync with 4.4lite2 version, as well as netbsd changes merged by perry.
retain openbsd changes too.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Dec 15 18:19:23 1995 UTC (28 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +8 -1 lines
Diff to previous 1.1 (colored)

-s option prevents opening of UDP port; from perry@piermont.com; netbsd pr#1761

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:48:22 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:48:22 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.