连接ssh服务时,提示:
代码语言:shell复制Unable to negotiate with xxx.xxx.xxx.xxx port 22: no matching host key type found. Their offer: ssh-rsa
此问题是由于两遍的加密方式不同,此时可以通过指定加密方式来临时进入
代码语言:shell复制ssh -o HostKeyAlgorithms= ssh-rsa -o PubkeyAcceptedKeyTypes= ssh-rsa root@xxx.xxx.xxx.xxx
此方法用于临时进入,若要彻底解决,需要进行其他配置