# HG changeset patch # User huston@80426f53-59d1-405d-934b-f07cd76f4a1a # Date 1267995132 0 # Node ID 9373507ce560a8bf6df239509026fc5ebd3f9213 # Parent fe60c9191e79d16e12c88f3c5e2aabcf09f7b7f4 * Adding .ssh/config to version control * Configured for sane defaults in most conceivable situations diff -r fe60c9191e79 -r 9373507ce560 .ssh/config --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.ssh/config Sun Mar 07 20:52:12 2010 +0000 @@ -0,0 +1,24 @@ +# Turn things off for stovetop - it chokes on them +Host stovetop stovetop.astro.princeton.edu + ForwardAgent no + ForwardX11 no + ForwardX11Trusted no + +# Allow everything for astro and home hosts w/ FQDN +Host *.astro.princeton.edu *.srhuston.net + ForwardAgent yes + ForwardX11 yes + ForwardX11Trusted yes + +# Deny everything for other hosts w/ a dot +Host *.* + ForwardAgent no + ForwardX11 no + ForwardX11Trusted no + +# Now allow for anything else - if we're typing a single hostname, it's likely +# trusted. +Host * + ForwardAgent yes + ForwardX11 yes + ForwardX11Trusted yes