linux系统连接很慢

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux系统连接很慢相关的知识,希望对你有一定的参考价值。

使用ssh时有时会出现连接一个服务器的时候超慢,一般会显示一下信息,然后就卡在那不动了

Connecting to 10.10.10.10:22...
Connection established.
To escape to local shell, press ‘Ctrl+Alt+]‘.

过好长时间之后才会显示类似以下的信息

Last login: Mon Jun  3 13:19:59 2013 from 10.10.10.1

会出现这种问题是因为ssh默认有一个配置项UseDNS(文档中解释此配置项的意思为:UseDNS Specifies whether sshd should look up the remote host name and check that the resolved host name for the remote IP address maps back to the very same IP address. The default is “yes”.

当此项配置不开启时默认值为UseDNS yes,这样会导致ssh在有连接过来的时候进行dns解析,所以会产生较长时间的停顿,所以要解决此问题可以将此配置项打开,然后值改为no,操作如下:

vim /etc/ssh/sshd_config

将第5行的注释去掉,然后将值改为no

#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#ShowPatchLevel no
UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10
#PermitTunnel no
#ChrootDirectory none

然后重启一下sshd服务。



本文出自 “小公举” 博客,请务必保留此出处http://xiaogongju.blog.51cto.com/12830710/1982062

以上是关于linux系统连接很慢的主要内容,如果未能解决你的问题,请参考以下文章

Linux文件系统,软硬连接,动静态库

ssh连接linux速度很慢解决方案

Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段

Linux系统下ssh登陆很慢的解决办法

解决Centos ssh 连接慢的问题

为啥在vmware上装的linux系统反应很慢?