Linux 及 Windows配置临时全局代理


共计 742 个字符,预计需要花费 2 分钟才能阅读完成。

说明

之前有写过 Linux 以及 Docker 配置 http 代理,其实 linux 比如 yum、apt、curl、wget 等工具,默认只需要配置全局代理就够了,只是 docker 拉取镜像比较特殊,需要另外配置,所以这里只是为了方便自己在 linux 配置代理

临时代理

配置临时代理,如果没换过端口,只需要改 ip 即可。

注意:代理默认是关闭局域网连接的,如果代理安装的位置不是本机,记得在安装代理的机器上开启允许局域网连接。

1. v2rayN

# linux
export http_proxy="http://127.0.0.1:10809"
export https_proxy="http://127.0.0.1:10809"
# windows
set http_proxy="http://127.0.0.1:10809"
set https_proxy="http://127.0.0.1:10809"

2. clash

# linux
export http_proxy="http://127.0.0.1:7890"
export https_proxy="http://127.0.0.1:7890"
# windows
set http_proxy="http://127.0.0.1:7890"
set https_proxy="http://127.0.0.1:7890"

2. v2rayA

# linux
export http_proxy="http://127.0.0.1:20171"
export https_proxy="http://127.0.0.1:20171"
# windows
set http_proxy="http://127.0.0.1:20171"
set https_proxy="http://127.0.0.1:20171"

提醒:本文发布于376天前,文中所关联的信息可能已发生改变,请知悉!

Tips:清朝云网络工作室

阅读剩余
THE END