i had the need to use :443 for establishing a connection to my home pc through my work proxy/firewall. i was able to do so through the use of
ProxyTunnel. once installed, i added a config file for use with ssh
~/.ssh/config
in the file 'config' is where you will place your needed information for ssh to use proxytunnel.
something like this
Code:
host myhome
ProxyCommand /usr/bin/proxytunnel -g proxy -G 80 -d myhome.com -D 443
unfortunately i have only used proxytunnel with an authenticating cache proxy of which my config looks like
Code:
host myhome
ProxyCommand /usr/bin/proxytunnel -g proxy -G 80 -u <username> -s <password> -d myhome.here.com -D 443
then to establish the connection
Code:
ssh -l <name of user at myhome> <any port forwards/reverses> myhome
on myhome, i configured the sshd to listen on port 443 as well as 22 for incoming connections
hope this helps...