1. 程式人生 > >SSH Secure Shell 出現"Algorithm negotiation failed" 的解決方法

SSH Secure Shell 出現"Algorithm negotiation failed" 的解決方法

主機:Windows 7 + SSH Secure Shell (Version3.2.9)

虛擬機器:VirtualBox + Ubuntu 16.04

在SSH Secure Shell上執行Connect to Remote Host時出現"Algorithm negotiation failed"警告

搜尋一番後發現原因:SSH升級後,為了安全,預設不再採用原來的一些加密演算法,需要手動新增。

先進入sshd的配置檔案,

sudo vi /etc/ssh/sshd_config

增加如下配置:

Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc

MACs hmac-md5,hmac-sha1,
[email protected]
,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]

儲存配置後,重啟sshd服務,

/etc/init.d/ssh_start

即可正常連線。