Never mind. I figured it out myself.
This can be done using a local SSH config file. Create a new file inside the .ssh directory within your home directory, and call the file "config". Here is the full content of my ~/.ssh/config file
ProxyCommand /usr/bin/nc -x localhost:8080 %h %p
After opening the initial connection to my desktop computer in the office which creates the SOCKS proxy, any subsequent SSH connection will follow the rules in this config file. This, in turn, has the effect of making BBEdit connect through my temporary SOCKS proxy.
Wildcards can also be used in the config file, so if you routinely connect to more than one server behind the firewall, you can do *.
mywork.com instead of listing each one individually.
Mark
On Thursday, April 3, 2014 10:20:25 AM UTC+1, Mark wrote: