]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2002/04/22 16:16:53
authordjm <djm>
Tue, 23 Apr 2002 11:04:51 +0000 (11:04 +0000)
committerdjm <djm>
Tue, 23 Apr 2002 11:04:51 +0000 (11:04 +0000)
     [servconf.c sshd.8 sshd_config]
     do not auto-enable KerberosAuthentication; ok djm@, provos@, deraadt@

ChangeLog
servconf.c
sshd.8
sshd_config

index 9ed421e7af1ab2ffb9f8f376b75af4845fc7a675..db04a39f33b06f92f7ab9acc90de267df99b8a0e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,6 +21,9 @@
    - markus@cvs.openbsd.org 2002/04/22 06:15:47
      [radix.c]
      fix check for overflow
+   - markus@cvs.openbsd.org 2002/04/22 16:16:53
+     [servconf.c sshd.8 sshd_config]
+     do not auto-enable KerberosAuthentication; ok djm@, provos@, deraadt@
 
 20020421
  - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).
index 5172813ec996aecc78f55ee3e281b99bbffc3c85..4b5b406a7c4621a698654345da3a0cc103d972a8 100644 (file)
@@ -10,7 +10,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: servconf.c,v 1.106 2002/04/20 09:02:03 deraadt Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.107 2002/04/22 16:16:53 markus Exp $");
 
 #if defined(KRB4)
 #include <krb.h>
@@ -200,7 +200,7 @@ fill_default_server_options(ServerOptions *options)
                options->pubkey_authentication = 1;
 #if defined(KRB4) || defined(KRB5)
        if (options->kerberos_authentication == -1)
-               options->kerberos_authentication = (access(KEYFILE, R_OK) == 0);
+               options->kerberos_authentication = 0;
        if (options->kerberos_or_local_passwd == -1)
                options->kerberos_or_local_passwd = 1;
        if (options->kerberos_ticket_cleanup == -1)
diff --git a/sshd.8 b/sshd.8
index 59ba65f9ce0297ac18d9ff66d391f348b11092bf..04596d6a1ca6b2ae851706a67012c55a0578c5f3 100644 (file)
--- a/sshd.8
+++ b/sshd.8
@@ -34,7 +34,7 @@
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.\" $OpenBSD: sshd.8,v 1.177 2002/04/21 16:19:27 stevesk Exp $
+.\" $OpenBSD: sshd.8,v 1.178 2002/04/22 16:16:53 markus Exp $
 .Dd September 25, 1999
 .Dt SSHD 8
 .Os
@@ -571,7 +571,7 @@ the Kerberos KDC.
 To use this option, the server needs a
 Kerberos servtab which allows the verification of the KDC's identity.
 Default is
-.Dq yes .
+.Dq no .
 .It Cm KerberosOrLocalPasswd
 If set then if password authentication through Kerberos fails then
 the password will be validated via any additional local mechanism
index a6b148bc9d1b4b444c9f2c0b3e57dc84eb81c99e..d55a9e68ce2db3aadfb09fe782cea6592deb33e2 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: sshd_config,v 1.50 2002/04/21 16:19:27 stevesk Exp $
+#      $OpenBSD: sshd_config,v 1.51 2002/04/22 16:16:53 markus Exp $
 
 # This is the sshd server system-wide configuration file.  See sshd(8)
 # for more information.
@@ -60,8 +60,7 @@
 #ChallengeResponseAuthentication yes
 
 # Kerberos options
-# KerberosAuthentication automatically enabled if keyfile exists
-#KerberosAuthentication yes
+#KerberosAuthentication no
 #KerberosOrLocalPasswd yes
 #KerberosTicketCleanup yes
 
This page took 0.054032 seconds and 5 git commands to generate.