diff options
author | 1996-11-09 21:18:56 +0000 | |
---|---|---|
committer | 1996-11-09 21:18:56 +0000 | |
commit | 437dca66e5797bc153a8095119c8ac0e308fbf48 (patch) | |
tree | 52ef58f0e5e8d786f4d304c6fdb582bf215dc966 | |
parent | Adds support for logging and reporting on failed login attempts (diff) | |
download | wireguard-openbsd-437dca66e5797bc153a8095119c8ac0e308fbf48.tar.xz wireguard-openbsd-437dca66e5797bc153a8095119c8ac0e308fbf48.zip |
By default, run telnetd with -k (no auto kludge)
-rw-r--r-- | etc/inetd.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inetd.conf b/etc/inetd.conf index 1101dae302e..70b6209fa55 100644 --- a/etc/inetd.conf +++ b/etc/inetd.conf @@ -1,9 +1,9 @@ -# $OpenBSD: inetd.conf,v 1.14 1996/09/23 13:06:04 deraadt Exp $ +# $OpenBSD: inetd.conf,v 1.15 1996/11/09 21:18:56 downsj Exp $ # # Internet server configuration database # ftp stream tcp nowait root /usr/libexec/ftpd ftpd -US -telnet stream tcp nowait root /usr/libexec/telnetd telnetd +telnet stream tcp nowait root /usr/libexec/telnetd telnetd -k shell stream tcp nowait root /usr/libexec/rshd rshd -L login stream tcp nowait root /usr/libexec/rlogind rlogind #exec stream tcp nowait root /usr/libexec/rexecd rexecd |