内网linux ssh连接慢解决以及ssh通道不能使用

创建时间:2022-08-25 14:32:35
栏目:linux
标签:linuxssh通道

内网连接ssh慢,是因为ssh有dns反解析的功能,类似于mysqld的--skip-name-resolve。内网连dns服务器超时所以很慢。 所以修改/etc/ssh/sshd_config中的GSSAPIAuthentication UseDNS两项为no

GSSAPIAuthentication no
UseDNS=no

另外,ssh通道的功能默认是关闭的,如果需要通过ssh通道连接mysql,请将/etc/ssh/sshd_config中的PermitTunnel为yes

PermitTunnel yes

最后要使配置生效不要忘记了重启sshd服务

systemctl restart sshd

联系我们

微信号:shidaping023