Run SSH trough a proxy
- by Row Minds
I have a question.
How can i run SSH trough a proxy or a SSH Tunneling Protocol?
For example i have a computer(Ubuntu) with ip eg. 123.123.123.123 and i want to connect to my server trough a proxy eg. 111.111.111.111 so i can see in lastlog that the last authentication was made from 123.123.123.123 .
I need this because i cannot access a certain server at work only with an specified range IP. What i tried so far was
http://daniel.haxx.se/docs/sshproxy.html
where i used ssh -D 1 [email protected] -p 443
where i had 127.0.0.1 forwarded to a SSH Tunneling Protocol
http://www.nixtutor.com/linux/installing-and-configuring-an-ssh-server/ (i configurated listening on port 443 but no result, still no connection (denied) ...)
This question may sound simple, but i can't figure it out, can you please help me? Thanks.