Skip to content

Instantly share code, notes, and snippets.

@leedm777
Created November 9, 2010 21:04
Show Gist options
  • Save leedm777/669802 to your computer and use it in GitHub Desktop.
Save leedm777/669802 to your computer and use it in GitHub Desktop.
My typical SSH config file
# This goes in ~/.ssh/config.
# ssh is picky about file permissions, so be sure to
# chmod 700 ~/.ssh
# chmod 600 ~/.ssh/config
#
# Forward X11 and ssh-agent to trusted hosts. Be sure to only do this for
# *trusted* machines, otherwise you may fall victim to identity theft.
# See ssh man page for details.
#
Host <space separated list of hosts>
ForwardX11 yes
ForwardX11Trusted yes
ForwardAgent yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment