Created
November 9, 2010 21:04
-
-
Save leedm777/669802 to your computer and use it in GitHub Desktop.
My typical SSH config file
This file contains 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
# 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