-
-
Save ffjia/65e74c82a6a9c0e3badc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#dynamic port forwarding, binds a socket on the local machine | |
ssh -D 8080 user@host | |
#tunnel through proxy examples | |
chromium-browser --proxy-server="socks5://localhost:8080" | |
curl --socks5 localhost:8080 url | |
#most apps should recognize this | |
export HTTP_PROXY="socks5://localhost:8080" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment