comparison .ssh/config @ 38:9373507ce560

* Adding .ssh/config to version control * Configured for sane defaults in most conceivable situations
author huston@80426f53-59d1-405d-934b-f07cd76f4a1a
date Sun, 07 Mar 2010 20:52:12 +0000
parents
children 82999776304f
comparison
equal deleted inserted replaced
37:fe60c9191e79 38:9373507ce560
1 # Turn things off for stovetop - it chokes on them
2 Host stovetop stovetop.astro.princeton.edu
3 ForwardAgent no
4 ForwardX11 no
5 ForwardX11Trusted no
6
7 # Allow everything for astro and home hosts w/ FQDN
8 Host *.astro.princeton.edu *.srhuston.net
9 ForwardAgent yes
10 ForwardX11 yes
11 ForwardX11Trusted yes
12
13 # Deny everything for other hosts w/ a dot
14 Host *.*
15 ForwardAgent no
16 ForwardX11 no
17 ForwardX11Trusted no
18
19 # Now allow for anything else - if we're typing a single hostname, it's likely
20 # trusted.
21 Host *
22 ForwardAgent yes
23 ForwardX11 yes
24 ForwardX11Trusted yes