原因:
ssh的服务端在连接时会自动检测DNS环境是否一致
操作:
1.vim etc/ssh/sshd_config
2
UseDNS yes --->默认为注释行
GSSAPIAuthentication yes --->默认为注释行
3
UseDNS no --->把注释打开,改为no
GSSAPIAuthentication no --->把注释打开,改为no
然后重启ssh服务即可
4.service sshd restart(CentOS7: systemctl restart sshd.service )
注意:个人实操,默认在虚拟机图形安装系统,7不用设置就很快,只有6需要设置以下