summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-05 06:57:23 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-05 06:57:23 +0000
commitd7f5b517d5530fe0df65b23f80eb4d11732b537e (patch)
tree476ae7cc684b720f4b64733c3e8f82022fa8ca96
parent49a098d1b202f9c6cc6c7a3e5e84ec9910a963db (diff)
- deraadt@cvs.openbsd.org 2001/03/02 09:42:49
[sshd.8] doc the dsa/rsa key pair files
-rw-r--r--ChangeLog5
-rw-r--r--sshd.826
2 files changed, 18 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index f895d3c64..92cd22dfe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -113,6 +113,9 @@
113 - deraadt@cvs.openbsd.org 2001/03/02 06:21:01 113 - deraadt@cvs.openbsd.org 2001/03/02 06:21:01
114 [sshd.8] 114 [sshd.8]
115 explain SIGHUP better 115 explain SIGHUP better
116 - deraadt@cvs.openbsd.org 2001/03/02 09:42:49
117 [sshd.8]
118 doc the dsa/rsa key pair files
116 119
11720010304 12020010304
118 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid. 121 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
@@ -4305,4 +4308,4 @@
4305 - Wrote replacements for strlcpy and mkdtemp 4308 - Wrote replacements for strlcpy and mkdtemp
4306 - Released 1.0pre1 4309 - Released 1.0pre1
4307 4310
4308$Id: ChangeLog,v 1.886 2001/03/05 06:55:18 mouring Exp $ 4311$Id: ChangeLog,v 1.887 2001/03/05 06:57:23 mouring Exp $
diff --git a/sshd.8 b/sshd.8
index dc9a09ce9..0ab509467 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.97 2001/03/02 06:21:01 deraadt Exp $ 37.\" $OpenBSD: sshd.8,v 1.98 2001/03/02 09:42:49 deraadt Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSHD 8 39.Dt SSHD 8
40.Os 40.Os
@@ -927,22 +927,24 @@ Contains configuration data for
927.Nm sshd . 927.Nm sshd .
928This file should be writable by root only, but it is recommended 928This file should be writable by root only, but it is recommended
929(though not necessary) that it be world-readable. 929(though not necessary) that it be world-readable.
930.It Pa /etc/ssh_host_key 930.It Pa /etc/ssh_host_key, /etc/ssh_host_dsa_key, /etc/ssh_host_rsa_key
931Contains the private part of the host key. 931These three files contain the private parts of the
932This file should only be owned by root, readable only by root, and not 932(SSH1, SSH2 DSA, and SSH2 RSA) host keys.
933These files should only be owned by root, readable only by root, and not
933accessible to others. 934accessible to others.
934Note that 935Note that
935.Nm 936.Nm
936does not start if this file is group/world-accessible. 937does not start if this file is group/world-accessible.
937.It Pa /etc/ssh_host_key.pub 938.It Pa /etc/ssh_host_key.pub, /etc/ssh_host_dsa_key.pub, /etc/ssh_host_rsa_key.pub
938Contains the public part of the host key. 939There three files contain the public parts of the
939This file should be world-readable but writable only by 940(SSH1, SSH2 DSA, and SSH2 RSA) host keys.
941These files should be world-readable but writable only by
940root. 942root.
941Its contents should match the private part. 943Their contents should match the respective private parts.
942This file is not 944These files are not
943really used for anything; it is only provided for the convenience of 945really used for anything; they are provided for the convenience of
944the user so its contents can be copied to known hosts files. 946the user so their contents can be copied to known hosts files.
945These two files are created using 947These files are created using
946.Xr ssh-keygen 1 . 948.Xr ssh-keygen 1 .
947.It Pa /etc/primes 949.It Pa /etc/primes
948Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange". 950Contains Diffie-Hellman groups used for the "Diffie-Hellman Group Exchange".