- Code: Select all
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no
turning them off will speed things up considerably. stick something like this into your ~/.ssh/config file:
- Code: Select all
Host *
GSSAPIAuthentication no
GSSAPIDelegateCredentials no
you could change /etc/ssh/ssh_config, but your changes might be overwritten by the next install/upgrade of the openssh-client package.
note that this only speeds up the connection process, not the connection itself. you can make your connection a bit faster on slow links (like dialup) with compression:
- Code: Select all
Host *
Compression yes


