Ubuntu系统版本:18.04
CentOS系统版本:7.8.2003
问题描述:在Ubuntu中使用ssh连接CentOS7反应很慢,但是最终能连上。
百度一搜,全是下面这个教程:
上面说的都是在Ubuntu端进行配置,按照上面 *** 作了一波,问题还是解决不了,最后尝试了几个配置,解决了问题。
Ubuntu端:
修改/etc/nsswitch.conf文件中的hosts配置
root@famebamboo:~# cat /etc/nsswitch.conf # /etc/nsswitch.conf # # Example configuration of GNU Name Service Switch functionality. # If you have the `glibc-doc-reference' and `info' packages installed, try: # `info libc "Name Service Switch"' for information about this file. passwd: compat systemd group: compat systemd shadow: compat gshadow: files #hosts: files dns hosts: files networks: files protocols: db files services: db files ethers: db files rpc: db files netgroup: nis
Centos端:
修改/etc/ssh/sshd_config,修改完需要重启sshd服务。
#UseDNS yes UseDNS no
总结:Ubuntu和Centos的sshd服务默认配置是不一样的,相互连接需要进行调整,根据上面图片中的思路去尝试也是没错的,只不过不能只在连接端进行尝试,被连接端的配置也要正确。
补充:修改了这个/etc/nsswitch.conf文件之后,会造成DNS解析不了,ping百度解析不了,所以最好的办法还是不修改这个文件,直接在Ubuntu的/etc/hosts文件添加关于Centos解析即可。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)