Categories
學習筆記

Proxy Firefox through a SSH tunnel

The following line will start the ssh client and connect to user@server_ip. Port 8080 on localhost (127.0.0.1) will listen for requests and send them to the remote machine. The remote machine will then send the packets out as if they originated from itself. ssh -C2qTnN -D 8080 user@server_ip The terminal will not showing anything, because […]