Skip to content

Win10终端设置代理

一、PowerShell设置翻墙代理

1. 在PowerShell中输入命令查看当前终端代理端口:

PowerShell
$env:http_proxy #查看http代理
$env:https_proxy #查看https代理

2. 将PowerShell代理端口设置成与clash一致:

PowerShell
$env:http_proxy="http://127.0.0.1:7890"
$env:https_proxy="http://127.0.0.1:7890"

image.png

3. 开启clash翻墙,测试PowerShell是否翻墙:

PowerShell
curl https://www.google.com

image.png

二.CMD终端设置翻墙代理

1. 查看当前系统代理端口:控制面板-网络和Internet-Internet选项-连接-局域网设置

image.png

image.png

2. 将cmd代理端口设置成与上图一致:

PowerShell
set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890

3. 开启clash翻墙,测试cmd是否翻墙:

PowerShell
curl https://www.google.com

image.png

Released under the MIT License.