# Download corkscrew. It is easy tool for tunneling SSH through HTTP proxies
# Extract corkscrew then configure and install it
tar -xzvf corkscrew.tar.gz# Create ~/.ssh/proxyauth file and set authentication for http proxy server
cd corkscrew
./configure
make install
username:password# Open ~/.ssh/config file. Add proxy server ip address and its authentication in proxyauth file like this:
Host *# Try to access your server via ssh
ProxyCommand corkscrew proxy_ip_address proxy_port %h %p ~/.ssh/proxyauth
ssh username@example.comAnd it's all done. Enjoy!
2 comments:
Thanx for this howto ;-)
yeah, you're welcome :)
Post a Comment