Difference between revisions of "Disabling reverse DNS lookup for openSSH"

From Notes_Wiki
(Created page with "=Disabling reverse DNS lookup for openSSH= Sometimes SSH to servers takes considerable time. This can be due to delay problems with DNS servers. If we are on local LAN and th...")
 
m
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Disabling reverse DNS lookup for openSSH=
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[OpenSSH server configuration]] > [[Disabling reverse DNS lookup for openSSH]]


Sometimes SSH to servers takes considerable time. This can be due to delay problems with DNS servers. If we are on local LAN and there are no DNS hostnames assinged to various machines then there is no point in having DNS checks for SSH. In such cases DNS checks can be disabled to increase SSH speed. To disable DNS reverse lookup checks edit '<tt>/etc/ssh/sshd_config</tt>' file on SSH server and use:
Sometimes SSH to servers takes considerable time. This can be due to delay problems with DNS servers. If we are on local LAN and there are no DNS hostnames assinged to various machines then there is no point in having DNS checks for SSH. In such cases DNS checks can be disabled to increase SSH speed. To disable DNS reverse lookup checks edit '<tt>/etc/ssh/sshd_config</tt>' file on SSH server and use:
Line 11: Line 11:
</pre>
</pre>
that is uses nis, nisplus, mdns etc. do not get used for host to IP resolution.
that is uses nis, nisplus, mdns etc. do not get used for host to IP resolution.
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[OpenSSH server configuration]] > [[Disabling reverse DNS lookup for openSSH]]

Latest revision as of 09:46, 14 July 2022

Home > CentOS > CentOS 6.x > OpenSSH server configuration > Disabling reverse DNS lookup for openSSH

Sometimes SSH to servers takes considerable time. This can be due to delay problems with DNS servers. If we are on local LAN and there are no DNS hostnames assinged to various machines then there is no point in having DNS checks for SSH. In such cases DNS checks can be disabled to increase SSH speed. To disable DNS reverse lookup checks edit '/etc/ssh/sshd_config' file on SSH server and use:

UseDNS no

On clients edit '/etc/nsswitch.conf' file and ensure that hosts line looks like

hosts:      files dns

that is uses nis, nisplus, mdns etc. do not get used for host to IP resolution.



Home > CentOS > CentOS 6.x > OpenSSH server configuration > Disabling reverse DNS lookup for openSSH