当 SSH 到就版本的服务器时可能会碰到如下提示信息:
no matching key exchange method found. Their offer: diffie-hellman-group1-sha1
此时需要在服务器上进行设定才可以登入
当前用户生效
1 | vim ~/.ssh/config |
添加如下参数
1 | Host * |
针对所有用户
1 | sudo vim /etc/ssh/ssh_config |
末尾添加如下参数
1 | KexAlgorithms +diffie-hellman-group1-sha1 |