Fun with OpenSSH
OpenSSH is an awesome implementation of the ssh protocol and I use it a lot. However, to connect to hosts at work I sometimes need to traverse many firewalls, using insane ssh configurations such as:
Host foo
ProxyCommand ssh -A host1 ssh -A host2 ssh -A host3 nc %h %p
Which means that connecting to host foo takes [...]