ssh连接时去掉“The authenticity of host xx can’t be established”解决方法

前端之家收集整理的这篇文章主要介绍了ssh连接时去掉“The authenticity of host xx can’t be established”解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一个彻底去掉这个提示方法是,修改/etc/ssh/ssh_config文件(或$HOME/.ssh/config)中的配置,添加如下两行配置:

StrictHostKeyChecking no
UserKnownHostsFile /dev/null

修改好配置后,重新启动sshd服务即可。

centos7重启ssh服务命令为systemctl restart sshd.service

原文链接:https://www.f2er.com/centos/379068.html

猜你在找的CentOS相关文章