Disabling reverse DNS lookup for openSSH

From Notes_Wiki
Revision as of 11:41, 2 December 2012 by Saurabh (talk | contribs)

<yambe:breadcrumb self="Disable reverse DNS lookup">OpenSSH server configuration|OpenSSH</yambe:breadcrumb>

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.