Mercurial > index.cgi > dotfiles
view .ssh/config @ 202:8206a14c8c62
With the new 'sf' and 'rf' aliases, this stanza isn't needed
author | Steve Huston <huston@astro.princeton.edu> |
---|---|
date | Tue, 24 Nov 2020 08:59:19 -0500 |
parents | f5969673c794 |
children | f163a6073c48 |
line wrap: on
line source
# Turn things off for floyd - it doesn't need them Host floyd-mgmt floyd-mgmt.astro.internal ForwardAgent no ForwardX11 no ForwardX11Trusted no # Let's try a proxy connection here Host xanadu.astro.princeton.edu User huston ControlMaster auto ControlPersist yes ControlPath ~/.ssh/sockets/%C ServerAliveInterval 30 # This is the default, putting here to document ServerAliveCountMax 3 Match host csesbh2.princeton.edu exec "~/.ssh/onsubnet --not 128.112." ProxyJump xanadu.astro.princeton.edu Host csesbh2.princeton.edu User huston ControlMaster auto ControlPersist yes ControlPath ~/.ssh/sockets/%C ServerAliveInterval 30 # This is the default, putting here to document ServerAliveCountMax 3 # Everything is fine for the Raspberry Pi, just need a different user Host cake cake.srhuston.net User pi ForwardAgent yes ForwardX11 yes ForwardX11Trusted yes # Allow everything for CSES, astro, and home hosts w/ FQDN Host cses*.princeton.edu *.rc.princeton.edu *.rc *.astro.princeton.edu *.srhuston.net User huston 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 * User huston ForwardAgent yes ForwardX11 yes ForwardX11Trusted yes