after setting up my
vnc tunnels through ssh to my remote machines i figured i might as well share this small bit of fun i'm having. i've read lots of posts of how to surf through proxies but what if you want to (on your lunch break of course

) work on one of your websites that you have on your home computer's webserver while at work, but would rather the traffic be encrypted?
well it's actually really easy to either use putty or openssh to redirect http traffic over ssh to your remote machine!
1) start up putty or openssh and create a connection from your work computer's port 8080 to your home computer's port 80 like this:
ssh -l <username> <homeIPaddress> -L 8080:127.0.0.1:80
then in your web browser type in:
http://localhost:8080/
and you are then browsing your home webserver's pages completely encrypted! it just looks like you have an ssh session open from your computer1
enjoy

disorderly