ssh或者scp提示“no matching host key type found. Their offer: ssh-rsa,ssh-dss“的错误解决方法

原因:openssh版本在7.0以前有ssh-dss (DSA)算法,但是openssh7.0以后的版本不再支持ssh-dss (DSA)算法,连接报错就是因为连接了7.0以前的openssh

解决办法:
ssh连接服务器:ssh -oHostKeyAlgorithms=+ssh-dss loneferret@192.168.140.146
scp连接服务器:scp -oHostKeyAlgorithms=+ssh-dss test.txt test@192.168.10.128:/test

» 本文链接:ssh或者scp提示“no matching host key type found. Their offer: ssh-rsa,ssh-dss“的错误解决方法
» 转载请注明来源:刺客博客
» 如果文章失效或者安装失败,请留言进行反馈。