This ssh tunneling is new for me also. I'm sorry for mistakes.java script:emoticon(':(', 'smid_2')

I will wrtite based on
http://www.oreillynet.com/pub/a/wireless/2001/02/23/wep.htmlWith ssh tunneling you can access a service in an encrypted way, which is already accessibile.
And you must have an ssh account on the remote site. And you must have root privileges on localhost.
QUOTE(bombshop @ Jan 5 2007, 09:48 PM)

For tunelling the ssh connection is it necessary for the server i log in and the site i try to reach to be on the same subnet??
It can be on any subnet. If you use only "host" instead of "host.schooldomain.com" then you must run within the same subnet. You can use ip addresses also.
QUOTE(bombshop @ Jan 5 2007, 09:48 PM)

The question is, I am supposed to open the google front page with this tunnel but when i try it says DONE and shows me nothing. I suppose there is a problem with that tunnel but can not kinda figure it out.
Do you have an ssh account on google:80? I think answer is not. So this is why it doesn't work.
What happens when you connect to school:80 by your local port 3333 as you mentioned? Probably you see the school's home page. The difference between connecting to local port 3333 with your browser and connecting directly to school:80 is that communication between the computers are ssh-encrypted.
Let's say you want to browse the net and your firewall enables only ssh connection.
You will use ssh tunneling to access the service on your computer's local port.
For example your school have a proxy server at proxy.school.com and accepts request at port 9500.
If you have ssh access to proxy.school.com then you tunnel to the proxy:
ssh -N -l username -L 3333:proxy.school.com:9500 proxy.school.com
After typing correct password let this shell running.
After it set up browser to use proxy at localhost:3333.
And browse the net as your firewall wouldn't block this.
And if you don't have ssh access to proxy.school.com you can install one at school.com. However maybe you will break the rules of your school. First read the whitepapers what are allowed and what are not.
But you want to use torrents... And maybe at school there is a firewall also...
Reply