summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-04-12 23:00:29 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-04-12 23:00:29 +0000
commit59ba7e8186cfa7b27a2a2d380faedc0982197a71 (patch)
treee129ff218edfbd1d604e3cba1d8cea69088f10a1 /usr.bin/ssh
parentcb298440e38904728f51c61cd8d536ff9c20e43b (diff)
document Protocol, Ciphers
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/ssh.119
-rw-r--r--usr.bin/ssh/sshd.818
2 files changed, 35 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.1 b/usr.bin/ssh/ssh.1
index 1c093800e60..55a38666b1e 100644
--- a/usr.bin/ssh/ssh.1
+++ b/usr.bin/ssh/ssh.1
@@ -9,7 +9,7 @@
.\"
.\" Created: Sat Apr 22 21:55:14 1995 ylo
.\"
-.\" $Id: ssh.1,v 1.44 2000/04/12 21:47:51 aaron Exp $
+.\" $Id: ssh.1,v 1.45 2000/04/12 23:00:28 markus Exp $
.\"
.Dd September 25, 1999
.Dt SSH 1
@@ -548,6 +548,12 @@ and
are supported.
The default is
.Dq 3des .
+.It Cm Ciphers
+Specifies the ciphers allowed for protocol version 2
+in order of preference.
+Multiple ciphers must be comma-separated.
+The default is
+.Dq blowfish-cbc,3des-cbc,arcfour,cast128-cbc .
.It Cm Compression
Specifies whether to use compression.
The argument must be
@@ -697,6 +703,17 @@ or
.It Cm Port
Specifies the port number to connect on the remote host.
Default is 22.
+.It Cm Protocol
+Specifies the protocol versions
+.Nm
+should support in order of preference.
+The possible values are
+.Dq 1
+and
+.Dq 2 .
+Multiple versions must be comma-separated.
+The default is
+.Dq 1 .
.It Cm ProxyCommand
Specifies the command to use to connect to the server.
The command
diff --git a/usr.bin/ssh/sshd.8 b/usr.bin/ssh/sshd.8
index 85d694afba9..cd6646f34bb 100644
--- a/usr.bin/ssh/sshd.8
+++ b/usr.bin/ssh/sshd.8
@@ -9,7 +9,7 @@
.\"
.\" Created: Sat Apr 22 21:55:14 1995 ylo
.\"
-.\" $Id: sshd.8,v 1.40 2000/04/12 21:47:51 aaron Exp $
+.\" $Id: sshd.8,v 1.41 2000/04/12 23:00:28 markus Exp $
.\"
.Dd September 25, 1999
.Dt SSHD 8
@@ -246,6 +246,11 @@ wildcards in the patterns.
Only user names are valid, a numerical user ID isn't recognized.
By default login is allowed regardless of the user name.
.Pp
+.It Cm Ciphers
+Specifies the ciphers allowed for protocol version 2.
+Multiple ciphers must be comma-separated.
+The default is
+.Dq blowfish-cbc,3des-cbc,arcfour,cast128-cbc .
.It Cm CheckMail
Specifies whether
.Nm
@@ -427,6 +432,17 @@ when a user logs in interactively.
or equivalent.)
The default is
.Dq yes .
+.It Cm Protocol
+Specifies the protocol versions
+.Nm
+should support.
+The possible values are
+.Dq 1
+and
+.Dq 2 .
+Multiple versions must be comma-separated.
+The default is
+.Dq 1 .
.It Cm RandomSeed
Obsolete.
Random number generation uses other techniques.