diff options
-rw-r--r-- | servconf.c | 2 | ||||
-rw-r--r-- | sshd.8 | 7 | ||||
-rw-r--r-- | sshd_config | 1 | ||||
-rw-r--r-- | sshd_config.5 | 7 |
4 files changed, 6 insertions, 11 deletions
diff --git a/servconf.c b/servconf.c index a391cf4b2..1a7a5f182 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -204,8 +204,6 @@ fill_default_server_options(ServerOptions *options) | |||
204 | /* fill default hostkeys for protocols */ | 204 | /* fill default hostkeys for protocols */ |
205 | options->host_key_files[options->num_host_key_files++] = | 205 | options->host_key_files[options->num_host_key_files++] = |
206 | _PATH_HOST_RSA_KEY_FILE; | 206 | _PATH_HOST_RSA_KEY_FILE; |
207 | options->host_key_files[options->num_host_key_files++] = | ||
208 | _PATH_HOST_DSA_KEY_FILE; | ||
209 | #ifdef OPENSSL_HAS_ECC | 207 | #ifdef OPENSSL_HAS_ECC |
210 | options->host_key_files[options->num_host_key_files++] = | 208 | options->host_key_files[options->num_host_key_files++] = |
211 | _PATH_HOST_ECDSA_KEY_FILE; | 209 | _PATH_HOST_ECDSA_KEY_FILE; |
@@ -167,11 +167,10 @@ This option must be given if | |||
167 | is not run as root (as the normal | 167 | is not run as root (as the normal |
168 | host key files are normally not readable by anyone but root). | 168 | host key files are normally not readable by anyone but root). |
169 | The default is | 169 | The default is |
170 | .Pa /etc/ssh/ssh_host_dsa_key , | 170 | .Pa /etc/ssh/ssh_host_rsa_key , |
171 | .Pa /etc/ssh/ssh_host_ecdsa_key , | 171 | .Pa /etc/ssh/ssh_host_ecdsa_key |
172 | .Pa /etc/ssh/ssh_host_ed25519_key | ||
173 | and | 172 | and |
174 | .Pa /etc/ssh/ssh_host_rsa_key . | 173 | .Pa /etc/ssh/ssh_host_ed25519_key . |
175 | It is possible to have multiple host key files for | 174 | It is possible to have multiple host key files for |
176 | the different host key algorithms. | 175 | the different host key algorithms. |
177 | .It Fl i | 176 | .It Fl i |
diff --git a/sshd_config b/sshd_config index f68edf367..928229594 100644 --- a/sshd_config +++ b/sshd_config | |||
@@ -16,7 +16,6 @@ | |||
16 | #ListenAddress :: | 16 | #ListenAddress :: |
17 | 17 | ||
18 | #HostKey /etc/ssh/ssh_host_rsa_key | 18 | #HostKey /etc/ssh/ssh_host_rsa_key |
19 | #HostKey /etc/ssh/ssh_host_dsa_key | ||
20 | #HostKey /etc/ssh/ssh_host_ecdsa_key | 19 | #HostKey /etc/ssh/ssh_host_ecdsa_key |
21 | #HostKey /etc/ssh/ssh_host_ed25519_key | 20 | #HostKey /etc/ssh/ssh_host_ed25519_key |
22 | 21 | ||
diff --git a/sshd_config.5 b/sshd_config.5 index cc5d9fb0a..0747cc8b5 100644 --- a/sshd_config.5 +++ b/sshd_config.5 | |||
@@ -741,11 +741,10 @@ is not to load any certificates. | |||
741 | Specifies a file containing a private host key | 741 | Specifies a file containing a private host key |
742 | used by SSH. | 742 | used by SSH. |
743 | The defaults are | 743 | The defaults are |
744 | .Pa /etc/ssh/ssh_host_dsa_key , | 744 | .Pa /etc/ssh/ssh_host_rsa_key , |
745 | .Pa /etc/ssh/ssh_host_ecdsa_key , | 745 | .Pa /etc/ssh/ssh_host_ecdsa_key |
746 | .Pa /etc/ssh/ssh_host_ed25519_key | ||
747 | and | 746 | and |
748 | .Pa /etc/ssh/ssh_host_rsa_key . | 747 | .Pa /etc/ssh/ssh_host_ed25519_key . |
749 | .Pp | 748 | .Pp |
750 | Note that | 749 | Note that |
751 | .Xr sshd 8 | 750 | .Xr sshd 8 |