|
问题描述:在使用SSHSecureShellClien连接ubunt系统出现错误:server responded “Algorithm negotiation failes”,后经过查询资料解决问题,集体步骤如下:
1.打开/etc/ssh文件目录下的文件sshd_config
sudo vim /etc/ssh/sshd_config
2.在文件末尾添加以下信息
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,umac-64@openssh.com,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,curve25519-sha256@libssh.org
3.保存后重启ssh服务
sudo /etc/init.d/ssh restart
4.命令行出现以下日志信息时即可
root@Master:~# sudo vi /etc/ssh/sshd_config
root@Master:~# sudo /etc/init.d/ssh restart
[ ok ] Restarting ssh (via systemctl): ssh.service. |
|
|