summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--servconf.c4
-rw-r--r--sshd.84
-rw-r--r--sshd_config5
4 files changed, 10 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index b7405813c..62e88bc37 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,9 @@
21 - markus@cvs.openbsd.org 2002/04/22 06:15:47 21 - markus@cvs.openbsd.org 2002/04/22 06:15:47
22 [radix.c] 22 [radix.c]
23 fix check for overflow 23 fix check for overflow
24 - markus@cvs.openbsd.org 2002/04/22 16:16:53
25 [servconf.c sshd.8 sshd_config]
26 do not auto-enable KerberosAuthentication; ok djm@, provos@, deraadt@
24 27
2520020421 2820020421
26 - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0). 29 - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).
@@ -8287,4 +8290,4 @@
8287 - Wrote replacements for strlcpy and mkdtemp 8290 - Wrote replacements for strlcpy and mkdtemp
8288 - Released 1.0pre1 8291 - Released 1.0pre1
8289 8292
8290$Id: ChangeLog,v 1.2068 2002/04/23 11:00:33 djm Exp $ 8293$Id: ChangeLog,v 1.2069 2002/04/23 11:04:51 djm Exp $
diff --git a/servconf.c b/servconf.c
index 5172813ec..4b5b406a7 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.106 2002/04/20 09:02:03 deraadt Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.107 2002/04/22 16:16:53 markus Exp $");
14 14
15#if defined(KRB4) 15#if defined(KRB4)
16#include <krb.h> 16#include <krb.h>
@@ -200,7 +200,7 @@ fill_default_server_options(ServerOptions *options)
200 options->pubkey_authentication = 1; 200 options->pubkey_authentication = 1;
201#if defined(KRB4) || defined(KRB5) 201#if defined(KRB4) || defined(KRB5)
202 if (options->kerberos_authentication == -1) 202 if (options->kerberos_authentication == -1)
203 options->kerberos_authentication = (access(KEYFILE, R_OK) == 0); 203 options->kerberos_authentication = 0;
204 if (options->kerberos_or_local_passwd == -1) 204 if (options->kerberos_or_local_passwd == -1)
205 options->kerberos_or_local_passwd = 1; 205 options->kerberos_or_local_passwd = 1;
206 if (options->kerberos_ticket_cleanup == -1) 206 if (options->kerberos_ticket_cleanup == -1)
diff --git a/sshd.8 b/sshd.8
index 59ba65f9c..04596d6a1 100644
--- a/sshd.8
+++ b/sshd.8
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: sshd.8,v 1.177 2002/04/21 16:19:27 stevesk Exp $ 37.\" $OpenBSD: sshd.8,v 1.178 2002/04/22 16:16:53 markus Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSHD 8 39.Dt SSHD 8
40.Os 40.Os
@@ -571,7 +571,7 @@ the Kerberos KDC.
571To use this option, the server needs a 571To use this option, the server needs a
572Kerberos servtab which allows the verification of the KDC's identity. 572Kerberos servtab which allows the verification of the KDC's identity.
573Default is 573Default is
574.Dq yes . 574.Dq no .
575.It Cm KerberosOrLocalPasswd 575.It Cm KerberosOrLocalPasswd
576If set then if password authentication through Kerberos fails then 576If set then if password authentication through Kerberos fails then
577the password will be validated via any additional local mechanism 577the password will be validated via any additional local mechanism
diff --git a/sshd_config b/sshd_config
index a6b148bc9..d55a9e68c 100644
--- a/sshd_config
+++ b/sshd_config
@@ -1,4 +1,4 @@
1# $OpenBSD: sshd_config,v 1.50 2002/04/21 16:19:27 stevesk Exp $ 1# $OpenBSD: sshd_config,v 1.51 2002/04/22 16:16:53 markus Exp $
2 2
3# This is the sshd server system-wide configuration file. See sshd(8) 3# This is the sshd server system-wide configuration file. See sshd(8)
4# for more information. 4# for more information.
@@ -60,8 +60,7 @@
60#ChallengeResponseAuthentication yes 60#ChallengeResponseAuthentication yes
61 61
62# Kerberos options 62# Kerberos options
63# KerberosAuthentication automatically enabled if keyfile exists 63#KerberosAuthentication no
64#KerberosAuthentication yes
65#KerberosOrLocalPasswd yes 64#KerberosOrLocalPasswd yes
66#KerberosTicketCleanup yes 65#KerberosTicketCleanup yes
67 66