Administrators Leon Posted August 16, 2012 Administrators Share Posted August 16, 2012 Sometimes it is very annoying to wait ten's of seconds to finish remote ssh server's reverse dns lookup procedure. It can be disabled on the server side but this process has a few tricks. First of all, you can make "UseDNS no" in /etc/ssh/sshd_config file, default answer is yes and if this line not shown in your config file, just add it to as below: UseDNS no This directive tells sshd process to check resolved host name for the connected client's ip address maps back to the very same ip address or not. After you have done the change, restart your SSH server with a: /etc/init.d/ssh restart NOTE: It does not prevent the sshd server from performing any DNS lookups at all. That's not the purpose of that directive. In order to remove dns lookups completely, you have to use -u0 options when starting sshd server. You can easily add this options to /etc/default/ssh or/etc/sysconfig/sshd or elsewhere suitable for your distribution. -u0 option's means that it will not put hostnames into the utmp structure (i.e. what you see when you type "who" at the shell prompt), which means that sshd will not perform DNS lookups for that purpose. However there are still cases where a lookup has to be performed when a user has "from=" like entries in his authorized_keys file, or when authentication methods or configuration directives are used that involve hostnames. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now