一般为了安全起见,数据不对外提供端口连接,采用代理或者vpn等方式进行连接。我这里采用navicate连接,代理选择ssh代理,连接过程中总是出错。
一、错误现象
- 错误日志:expected key exchange group packet from server
二、解决方法:
- 追加KexAlgorithms
vim /etc/ssh/sshd_config
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group14-sha1
- 重启
service sshd restart (centos6)
systemctl restart sshd (centos7)