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

0
The terminal will not showing anything, because we have set up the option of Quiet mode.

The ssh options are in the man page of ssh, but to summarize them in order:

  • C: Compression,
  • 2: SSH2 only,
  • q: Quiet mode,
  • T: Force pseudo-tty allocation,
  • n: Redirect stdin from /dev/null,
  • N: Place the ssh client into "master" mode for connection sharing.

Configure your firefox to pass the network traffic to the listen port 8080 on localhost.
1

2

3

Then, enjoy your life. 🙂

Reference link:
https://calomel.org/firefox_ssh_proxy.html

3 replies on “Proxy Firefox through a SSH tunnel”

Leave a Reply to 加气块设备 Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.