故障原因是openssh 8.8
开始默认禁用了SHA-1
哈希算法的RSA
签名
解决方法:
nano /etc/ssh/sshd_config
然后在文件中增加配置命令:
PubkeyAcceptedKeyTypes +ssh-rsa
之后重启ssh服务
service ssh restart
如果ssh服务不存在,用
service --status-all
看ssh服务的名字叫啥。
故障原因是openssh 8.8
开始默认禁用了SHA-1
哈希算法的RSA
签名
解决方法:
nano /etc/ssh/sshd_config
然后在文件中增加配置命令:
PubkeyAcceptedKeyTypes +ssh-rsa
之后重启ssh服务
service ssh restart
如果ssh服务不存在,用
service --status-all
看ssh服务的名字叫啥。