Simple port forwarding using SSH
Answer:
Assume you are working at office, you want to browse the facebook.com securely, you can do so by using a computer at home to build a secure tunnel using ssh.
# sudo ssh -L 8080:facebook.com:80
Then in your browser, type http://localhost:8080 and you can view the facebook.com.

