Subject: | Add support for ProxyCommand option. |
Hi,
I have ProxyCommand configuration in my .ssh/config file to connect to a
host behind a firewall through an ssh tunnel.
It looks something like this
Host *.hostbehindfirewall.com
ProxyCommand /usr/bin/ssh -p 9302 localhost /usr/local/bin/nc %h %p
Where port 9302 is forwarded to another host behind the firewall.
Currently, Net::SSH::Perl does not honour this configuration and tries
to connect to host1.hostbehindfirewall.com directly and times out. Is
there any way this feature can be incorporated in Net::SSH::Perl?
Thanks,
-Phirince