Fiddeling around with ssh-tunnels I want to keep myself reminded, on how to set up a tunnel to a remote server via ssh, forwarding port 80 to my port 4711:
ssh -L 4711:127.0.0.1:80 root@myserver.com
Then open your webbrowser and point it to 127.0.0.1:4711 and voila, you are on the internal webserver.. 😉