win cmd 設定代理
阿新 • • 發佈:2018-11-15
windows:
HTTP(S)代理伺服器:127.0.0.1:5783
SOCKS代理伺服器:127.0.0.1:5789
- set http_proxy=http://127.0.0.1:1189
- set https_proxy=http://127.0.0.1:1189
SOCKS5 代理設定:
1 2 |
set http_proxy=socks5://127.0.0.1:1080 set https_proxy=socks5://127.0.0.1:1080 |
git代理
git config --global http.proxy http://127.0.0.1:8118
git config --global https.proxy http://127.0.0.1:8118
SOCKS5 代理設定
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
取消
git config --global --unset http.proxy
git config --global --unset https.proxy
Socks代理比其他應用層代理要快得多。它通常繫結在代理伺服器的1080埠上。
SOCK4只支援TCP協議,SOCK5支援TCP和UDP協議
Http代理其埠一般是80