Catch up with sshd config file entry changes.
Now we need to explicitly set DSA key location to use protocol version 2.
This commit is contained in:
parent
845a2d5b53
commit
a230982a45
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: sshd.conf,v 1.2 2000/10/03 09:56:38 lukem Exp $
|
||||
# $NetBSD: sshd.conf,v 1.3 2001/01/15 06:13:08 toshii Exp $
|
||||
#
|
||||
# This is ssh server systemwide configuration file.
|
||||
|
||||
|
@ -7,6 +7,8 @@ Port 22
|
|||
#ListenAddress 0.0.0.0
|
||||
#ListenAddress ::
|
||||
HostKey /etc/ssh_host_key
|
||||
HostKey /etc/ssh_host_dsa_key
|
||||
#HostKey /etc/ssh_host_rsa_key
|
||||
ServerKeyBits 768
|
||||
LoginGraceTime 600
|
||||
KeyRegenerationInterval 3600
|
||||
|
@ -40,6 +42,7 @@ PasswordAuthentication yes
|
|||
PermitEmptyPasswords no
|
||||
# Uncomment to disable s/key passwords
|
||||
#SkeyAuthentication no
|
||||
#KbdInteractiveAuthentication yes
|
||||
|
||||
# To change Kerberos options
|
||||
#KerberosAuthentication no
|
||||
|
|
Loading…
Reference in New Issue