Guest User

Untitled

a guest
Jun 19th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #dynamic port forwarding, binds a socket on the local machine
  2. ssh -D 8080 user@host
  3.  
  4. #tunnel through proxy examples
  5. chromium-browser --proxy-server="socks5://localhost:8080"
  6. curl --socks5 localhost:8080 url
  7.  
  8. #most apps should recognize this
  9. export HTTP_PROXY="socks5://localhost:8080"
Add Comment
Please, Sign In to add comment