HINT: SSH Tunnel
Monday, February 25th, 2008Sometimes you’ve got the problem that some websites are just reachable in a particular network or you want to connect a service from another computer. No problem if you have SSH access to an external computer:
ssh <username>@external-computer.net -L 1234:badwebsite.com:80
This simple command on your terminal (executed as root!) will take you directly to badwebsite.com port 80, [...]
