Skip to content

Instantly share code, notes, and snippets.

@douglasjarquin
Created July 6, 2015 18:50
Show Gist options
  • Save douglasjarquin/8743fdd445839281f496 to your computer and use it in GitHub Desktop.
Save douglasjarquin/8743fdd445839281f496 to your computer and use it in GitHub Desktop.
# 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