Created
July 6, 2015 18:50
-
-
Save douglasjarquin/8743fdd445839281f496 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stop timing out connections | |
TCPKeepAlive no | |
ServerAliveInterval 60 | |
ServerAliveCountMax 20 | |
# SSH Connection pooling for faster additional connections to a machine | |
#ControlMaster auto | |
#ControlPath /tmp/ssh_mux_%h_%p_%r | |
# This makes subsequent connections go faster | |
#ControlPersist 2h | |
# Make it so ssh-ing from one server to another passes keys around automagically | |
Host * | |
ForwardAgent yes | |
# Get rid of SSH connection delays | |
GSSAPIAuthentication no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment