summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ssh.116
-rw-r--r--ssh_config.57
-rw-r--r--sshd_config.58
3 files changed, 16 insertions, 15 deletions
diff --git a/ssh.1 b/ssh.1
index 5b35b6cc0..42f71afaf 100644
--- a/ssh.1
+++ b/ssh.1
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: ssh.1,v 1.366 2015/11/15 22:26:49 jcs Exp $ 36.\" $OpenBSD: ssh.1,v 1.367 2016/02/16 05:11:04 djm Exp $
37.Dd $Mdocdate: November 15 2015 $ 37.Dd $Mdocdate: February 16 2016 $
38.Dt SSH 1 38.Dt SSH 1
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -795,15 +795,9 @@ or the
795and 795and
796.Fl 2 796.Fl 2
797options (see above). 797options (see above).
798Both protocols support similar authentication methods, 798Protocol 2 is the default.
799but protocol 2 is the default since 799Protocol 1 should not be used - it suffers from a number of cryptographic
800it provides additional mechanisms for confidentiality 800weaknesses and is only offered to support legacy devices.
801(the traffic is encrypted using AES, 3DES, Blowfish, CAST128, or Arcfour)
802and integrity (hmac-md5, hmac-sha1,
803hmac-sha2-256, hmac-sha2-512,
804umac-64, umac-128, hmac-ripemd160).
805Protocol 1 lacks a strong mechanism for ensuring the
806integrity of the connection.
807.Pp 801.Pp
808The methods available for authentication are: 802The methods available for authentication are:
809GSSAPI-based authentication, 803GSSAPI-based authentication,
diff --git a/ssh_config.5 b/ssh_config.5
index 5b09547dd..c8ccfecb4 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: ssh_config.5,v 1.224 2016/02/11 02:56:32 djm Exp $ 36.\" $OpenBSD: ssh_config.5,v 1.225 2016/02/16 05:11:04 djm Exp $
37.Dd $Mdocdate: February 11 2016 $ 37.Dd $Mdocdate: February 16 2016 $
38.Dt SSH_CONFIG 5 38.Dt SSH_CONFIG 5
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -1270,6 +1270,9 @@ will try version 2 and fall back to version 1
1270if version 2 is not available. 1270if version 2 is not available.
1271The default is 1271The default is
1272.Sq 2 . 1272.Sq 2 .
1273Protocol 1 suffers from a number of cryptographic weaknesses and should
1274not be used.
1275It is only offered to support legacy devices.
1273.It Cm ProxyCommand 1276.It Cm ProxyCommand
1274Specifies the command to use to connect to the server. 1277Specifies the command to use to connect to the server.
1275The command 1278The command
diff --git a/sshd_config.5 b/sshd_config.5
index fa5cff2fb..711a02524 100644
--- a/sshd_config.5
+++ b/sshd_config.5
@@ -33,8 +33,8 @@
33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\" 35.\"
36.\" $OpenBSD: sshd_config.5,v 1.217 2016/02/11 02:56:32 djm Exp $ 36.\" $OpenBSD: sshd_config.5,v 1.218 2016/02/16 05:11:04 djm Exp $
37.Dd $Mdocdate: February 11 2016 $ 37.Dd $Mdocdate: February 16 2016 $
38.Dt SSHD_CONFIG 5 38.Dt SSHD_CONFIG 5
39.Os 39.Os
40.Sh NAME 40.Sh NAME
@@ -1342,6 +1342,10 @@ and
1342Multiple versions must be comma-separated. 1342Multiple versions must be comma-separated.
1343The default is 1343The default is
1344.Sq 2 . 1344.Sq 2 .
1345Protocol 1 suffers from a number of cryptographic weaknesses and should
1346not be used.
1347It is only offered to support legacy devices.
1348.Pp
1345Note that the order of the protocol list does not indicate preference, 1349Note that the order of the protocol list does not indicate preference,
1346because the client selects among multiple protocol versions offered 1350because the client selects among multiple protocol versions offered
1347by the server. 1351by the server.