diff options
-rw-r--r-- | moduli.5 | 4 | ||||
-rw-r--r-- | ssh-keygen.1 | 12 | ||||
-rw-r--r-- | ssh.1 | 4 | ||||
-rw-r--r-- | sshd.8 | 5 | ||||
-rw-r--r-- | sshd_config.5 | 3 |
5 files changed, 13 insertions, 15 deletions
@@ -21,7 +21,7 @@ | |||
21 | .Nd Diffie-Hellman moduli | 21 | .Nd Diffie-Hellman moduli |
22 | .Sh DESCRIPTION | 22 | .Sh DESCRIPTION |
23 | The | 23 | The |
24 | .Pa /etc/moduli | 24 | .Pa /etc/ssh/moduli |
25 | file contains prime numbers and generators for use by | 25 | file contains prime numbers and generators for use by |
26 | .Xr sshd 8 | 26 | .Xr sshd 8 |
27 | in the Diffie-Hellman Group Exchange key exchange method. | 27 | in the Diffie-Hellman Group Exchange key exchange method. |
@@ -110,7 +110,7 @@ first estimates the size of the modulus required to produce enough | |||
110 | Diffie-Hellman output to sufficiently key the selected symmetric cipher. | 110 | Diffie-Hellman output to sufficiently key the selected symmetric cipher. |
111 | .Xr sshd 8 | 111 | .Xr sshd 8 |
112 | then randomly selects a modulus from | 112 | then randomly selects a modulus from |
113 | .Fa /etc/moduli | 113 | .Fa /etc/ssh/moduli |
114 | that best meets the size requirement. | 114 | that best meets the size requirement. |
115 | .Sh SEE ALSO | 115 | .Sh SEE ALSO |
116 | .Xr ssh-keygen 1 , | 116 | .Xr ssh-keygen 1 , |
diff --git a/ssh-keygen.1 b/ssh-keygen.1 index bfa2eb5f3..da6b5ed76 100644 --- a/ssh-keygen.1 +++ b/ssh-keygen.1 | |||
@@ -176,9 +176,7 @@ key in | |||
176 | .Pa ~/.ssh/id_ed25519 | 176 | .Pa ~/.ssh/id_ed25519 |
177 | or | 177 | or |
178 | .Pa ~/.ssh/id_rsa . | 178 | .Pa ~/.ssh/id_rsa . |
179 | Additionally, the system administrator may use this to generate host keys, | 179 | Additionally, the system administrator may use this to generate host keys. |
180 | as seen in | ||
181 | .Pa /etc/rc . | ||
182 | .Pp | 180 | .Pp |
183 | Normally this program generates the key and asks for a file in which | 181 | Normally this program generates the key and asks for a file in which |
184 | to store the private key. | 182 | to store the private key. |
@@ -229,9 +227,7 @@ If | |||
229 | .Fl f | 227 | .Fl f |
230 | has also been specified, its argument is used as a prefix to the | 228 | has also been specified, its argument is used as a prefix to the |
231 | default path for the resulting host key files. | 229 | default path for the resulting host key files. |
232 | This is used by | 230 | This is used by system administration scripts to generate new host keys. |
233 | .Pa /etc/rc | ||
234 | to generate new host keys. | ||
235 | .It Fl a Ar rounds | 231 | .It Fl a Ar rounds |
236 | When saving a private key this option specifies the number of KDF | 232 | When saving a private key this option specifies the number of KDF |
237 | (key derivation function) rounds used. | 233 | (key derivation function) rounds used. |
@@ -677,7 +673,7 @@ option. | |||
677 | Valid generator values are 2, 3, and 5. | 673 | Valid generator values are 2, 3, and 5. |
678 | .Pp | 674 | .Pp |
679 | Screened DH groups may be installed in | 675 | Screened DH groups may be installed in |
680 | .Pa /etc/moduli . | 676 | .Pa /etc/ssh/moduli . |
681 | It is important that this file contains moduli of a range of bit lengths and | 677 | It is important that this file contains moduli of a range of bit lengths and |
682 | that both ends of a connection share common moduli. | 678 | that both ends of a connection share common moduli. |
683 | .Sh CERTIFICATES | 679 | .Sh CERTIFICATES |
@@ -877,7 +873,7 @@ on all machines | |||
877 | where the user wishes to log in using public key authentication. | 873 | where the user wishes to log in using public key authentication. |
878 | There is no need to keep the contents of this file secret. | 874 | There is no need to keep the contents of this file secret. |
879 | .Pp | 875 | .Pp |
880 | .It Pa /etc/moduli | 876 | .It Pa /etc/ssh/moduli |
881 | Contains Diffie-Hellman groups used for DH-GEX. | 877 | Contains Diffie-Hellman groups used for DH-GEX. |
882 | The file format is described in | 878 | The file format is described in |
883 | .Xr moduli 5 . | 879 | .Xr moduli 5 . |
@@ -860,6 +860,10 @@ implements public key authentication protocol automatically, | |||
860 | using one of the DSA, ECDSA, Ed25519 or RSA algorithms. | 860 | using one of the DSA, ECDSA, Ed25519 or RSA algorithms. |
861 | The HISTORY section of | 861 | The HISTORY section of |
862 | .Xr ssl 8 | 862 | .Xr ssl 8 |
863 | (on non-OpenBSD systems, see | ||
864 | .nh | ||
865 | http://www.openbsd.org/cgi\-bin/man.cgi?query=ssl&sektion=8#HISTORY) | ||
866 | .hy | ||
863 | contains a brief discussion of the DSA and RSA algorithms. | 867 | contains a brief discussion of the DSA and RSA algorithms. |
864 | .Pp | 868 | .Pp |
865 | The file | 869 | The file |
@@ -65,7 +65,7 @@ over an insecure network. | |||
65 | .Nm | 65 | .Nm |
66 | listens for connections from clients. | 66 | listens for connections from clients. |
67 | It is normally started at boot from | 67 | It is normally started at boot from |
68 | .Pa /etc/rc . | 68 | .Pa /etc/init.d/ssh . |
69 | It forks a new | 69 | It forks a new |
70 | daemon for each incoming connection. | 70 | daemon for each incoming connection. |
71 | The forked daemons handle | 71 | The forked daemons handle |
@@ -884,7 +884,7 @@ This file is for host-based authentication (see | |||
884 | .Xr ssh 1 ) . | 884 | .Xr ssh 1 ) . |
885 | It should only be writable by root. | 885 | It should only be writable by root. |
886 | .Pp | 886 | .Pp |
887 | .It Pa /etc/moduli | 887 | .It Pa /etc/ssh/moduli |
888 | Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange" | 888 | Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange" |
889 | key exchange method. | 889 | key exchange method. |
890 | The file format is described in | 890 | The file format is described in |
@@ -982,7 +982,6 @@ The content of this file is not sensitive; it can be world-readable. | |||
982 | .Xr ssh-keyscan 1 , | 982 | .Xr ssh-keyscan 1 , |
983 | .Xr chroot 2 , | 983 | .Xr chroot 2 , |
984 | .Xr hosts_access 5 , | 984 | .Xr hosts_access 5 , |
985 | .Xr login.conf 5 , | ||
986 | .Xr moduli 5 , | 985 | .Xr moduli 5 , |
987 | .Xr sshd_config 5 , | 986 | .Xr sshd_config 5 , |
988 | .Xr inetd 8 , | 987 | .Xr inetd 8 , |
diff --git a/sshd_config.5 b/sshd_config.5 index 37e6be38f..23f71fd1d 100644 --- a/sshd_config.5 +++ b/sshd_config.5 | |||
@@ -395,8 +395,7 @@ Certificates signed using other algorithms will not be accepted for | |||
395 | public key or host-based authentication. | 395 | public key or host-based authentication. |
396 | .It Cm ChallengeResponseAuthentication | 396 | .It Cm ChallengeResponseAuthentication |
397 | Specifies whether challenge-response authentication is allowed (e.g. via | 397 | Specifies whether challenge-response authentication is allowed (e.g. via |
398 | PAM or through authentication styles supported in | 398 | PAM). |
399 | .Xr login.conf 5 ) | ||
400 | The default is | 399 | The default is |
401 | .Cm yes . | 400 | .Cm yes . |
402 | .It Cm ChrootDirectory | 401 | .It Cm ChrootDirectory |