• Windows 终端使用代理
# 使用 http 类型代理
set http_proxy=http://127.0.0.1:8484
set https_proxy=http://127.0.0.1:8484

# 使用 socks 类型代理
netsh winhttp set proxy proxy-server="socks=127.0.0.1:8484" bypass-list="localhost"
netsh winhttp show proxy
netsh winhttp reset proxy

# 使用 socks 类型代理
set http_proxy=socks5://127.0.0.1:8484
set https_proxy=socks5://127.0.0.1:8484

相关文章:

  • 2021-08-18
  • 2022-12-23
  • 2022-01-22
  • 2021-12-02
  • 2022-12-23
  • 2021-11-05
  • 2021-10-15
猜你喜欢
  • 2021-07-07
  • 2021-12-12
  • 2022-12-23
  • 2021-09-01
  • 2021-05-31
  • 2021-11-05
  • 2021-09-22
相关资源
相似解决方案