SSH enables secure log-in to remote computers and is primarily used for system administration. The log-in process could be slow, and it will add up if you need to log in many times a day as part of your job.
There are a few things that could affect SSH login speed, and there are ways that you can take to speed up SSH authentication, which you can implement from both the client and server sides.
SSH server could be configured to perform a reverse DNS lookup of incoming connection which could delay the log in process.
SSH server might have to check if you're using GSSAPI authentication even if you're conecting via other authentication method.
multiplexing allows sharing and reuse of SSH connection which could significantly speed up remote SSH server access.
Related: How to use multiplexing in SSH
SSH client will try multiple authentication methods unless manually specified.
Not having to manually key in username and password during log in will speed up SSH authentication.
Related: How to SSH without password
Comment anonymously. Login not required.