ssh连接其他Linux机器过慢怎么办
发布网友
发布时间:2022-04-26 22:06
我来回答
共2个回答
热心网友
时间:2023-11-08 20:40
ssh连接Linux服务器很慢,主要因为两个原因
1 DNS反向解析的问题。OpenSSH在用户登录的时候会验证IP,它根据用户的IP使用反向DNS找到主机名,再使用DNS找到IP地址。
解决办法是关闭ssh服务器的DNS反响解析,编辑etc/ssh/sshd_config,将UseDNS设置为no;
2 ssh的gssapi认证。
用ssh -v user@server 可以看到登录时有如下信息:
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
因此仍然编辑etc/ssh/sshd_config,将GSSAPIAuthentication设置为no。
最后重启sshd服务即可
热心网友
时间:2023-11-08 20:40
有多慢呢...