changeset 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 fe60c9191e79
children 67753ac87afb
files .ssh/config
diffstat 1 files changed, 24 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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