123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- ##### My (demuredemeanor) ~/.ssh/config
- # Uses tabstop=4; shiftwidth=4 tabs; foldmarker={{{,}}};
- # https://notabug.org/demure/dotfiles/
- # legacy repo http://github.com/demure/dotfiles
- ## If you are reading this, read:
- # http://blogs.perl.org/users/smylers/2011/08/ssh-productivity-tips.html
- ### Internet Places ### {{{
- ### DD ### {{{
- host dd
- hostName demu.red
- Port 500
- host ddx
- hostName demu.red
- Port 500
- ForwardX11 yes
- ForwardX11Trusted no
- host ddcomp
- hostName localhost
- Port 2001
- host ddtiny
- hostName localhost
- Port 2002
- ## for dd to sdf irc
- Host ddirc
- HostName ma.sdf.org
- LocalForward 2003 irc.sdf.org:6667
- User demure
- ServerAliveCountMax 300
- ServerAliveInterval 15
- ### End DD ### }}}
- ### SDF ### {{{
- host ma
- HostName ma.sdf.org
- host max
- HostName ma.sdf.org
- #ForwardAgent no
- ForwardX11 yes
- #ForwardX11Timeout 596h
- ForwardX11Trusted no
- host sdf
- HostName tty.sdf.org
- host cork
- hostName ma.sdf.org
- ProxyCommand corkscrew proxy.example.com 8080 %h %p
-
- host matiny
- hostName localhost
- Port 63753
- ### End SDF ### }}}
- host mdns
- hostName demure.mdns.org
- Port 8080
- host sleep
- hostName sleepermud.net
- host gnu
- hostName fencepost.gnu.org
- ### End Internet Places ### }}}
- ### Local Places ### {{{
- host comp doom
- hostName moving-computer-of-doom.local
- host tiny
- HostName tiny-computer-of-doom.local
- host net
- HostName moving-netbook-of-doom.local
- host device
- HostName moving-device-of-doom.local
- User mobile
- host tv
- HostName tv-of-doom.local
- User mobile
- host route
- hostName 10.0.0.1
- User root
- Port 1337
- ### End Local Places ### }}}
- ## Default settings, unless overridden above
- host *
- User demure
- Port 22
- GSSAPIAuthentication no
- ## https://pthree.org/2013/05/30/openssh-keys-and-the-drunken-bishop/
- VisualHostKey yes
|