共计 702 个字符,预计需要花费 2 分钟才能阅读完成。
如何在命令行里应用 shadowsocks
或者 v2rayn
的代理呢?
http
- linux:
export http_proxy=http://127.0.0.1:1087;
export https_proxy=http://127.0.0.1:1087;
- window:
set http_proxy=http://127.0.0.1:1087;
set https_proxy=http://127.0.0.1:1087;
socks(socks5)
- linux:
export http_proxy=socks5://127.0.0.1:10808
export https_proxy=socks5://127.0.0.1:10808
- window:
# 应用 sock5 代理
set http_proxy=socks5://127.0.0.1:10808
set https_proxy=socks5://127.0.0.1:10808
勾销代理
- linux:
unset http_proxy
unset https_proxy
- window:
set http_proxy=
set https_proxy=
git 独自设置
git config --global http.proxy 'socks5://127.0.0.1:10808'
git config --global https.proxy 'socks5://127.0.0.1:10808'
# 勾销
git config --global --unset http.proxy
git config --global --unset https.proxy
附:
1.shadowsocks 命令复制
2.v2rayn 端口查看
3. 通过主机 IP 代理
正文完