Skip to content

WIN终端代理

PowerShell

  1. $Env:http_proxy="http://127.0.0.1:7890";$Env:https_proxy="http://127.0.0.1:7890"
  2. 测试: Invoke-WebRequest -Uri "https://www.google.com"
  3. netsh winhttp show proxy
  4. netsh winhttp set proxy proxy-server="http=代理地址:端口;https=代理地址:端口"
  5. curl ifconfig.me
  6. 移除: netsh winhttp reset proxy

CMD

  1. set http_proxy=http://127.0.0.1:7890 & set https_proxy=http://127.0.0.1:7890
  2. 测试 curl -I https://www.google.com

MSYS2

  1. export http_proxy=http://127.0.0.1:7890
  2. export https_proxy=http://127.0.0.1:7890
  3. 测试: curl -I https://www.google.com
  4. 移除: unset http_proxy unset https_proxy
  5. 每次重启应该重新设置