Quick and dirty OpenSSH configlet here. If you have a set of hosts or devices
that require you to first jump through a bastion host, the following will allow
you to run a single ssh command:
Host *
ProxyCommand ssh -A <bastion_host> nc %h %p
Change the Host * line to best …

Thanks to a hard drive failure, I recently installed a fresh copy of Mac OS X 10.5
(Leopard) on my MacBook. I do a lot of work on remote systems and SSH is my bread
and butter. Whenever I tried to SSH into other Macs on my local network …