-
Notifications
You must be signed in to change notification settings - Fork 5
配合 SOCKS5 类代理使用
boytm edited this page Dec 29, 2017
·
3 revisions
mproxy 运行在本地,工作在 SOCKS5 转 HTTP 代理模式,将 SOCKS5 转 HTTP,这样就客户端以 HTTP 代理方式直接访问 mproxy 的本地端口即可。
ss-server -s 0.0.0.0 -p 50000 -k my_password -m aes-256-cfb -a nobody -u
ss-local -s your_server -p 50000 -k my_password -m aes-256-cfb -l 1080
mproxy -s 127.0.0.1 -p 1080 -l 8081
本地至此有一个 HTTP 代理: http://127.0.0.1:8081 。 下面分别介绍 浏览器 和 命令行工具 各自的使用
设置对所有协议使用相同 HTTP 代理: http://127.0.0.1:8081 即可
Linux 上使用 git 或者 curl 类工具,一般设置下面环境变量即可
export HTTP_PROXY=http://127.0.0.1:8081
export HTTPS_PROXY=http://127.0.0.1:8081
export ALL_PROXY=http://127.0.0.1:8081
ssh -D0.0.0.0:1080 your_server
mproxy -s 127.0.0.1 -p 1080 -l 8081
本地至此有一个 HTTP 代理: http://127.0.0.1:8081 。 具体使用方法类似上面 1.3 里面的
Tor 不需要自己架设
mproxy -s 127.0.0.1 -p 9150 -l 8081
本地至此有一个 HTTP 代理: http://127.0.0.1:8081 。 具体使用方法类似上面 1.3 里面的