美文网首页
windows设置代理

windows设置代理

作者: 超哥__ | 来源:发表于2018-09-24 11:47 被阅读0次

x:>netsh
netsh>winhttp
netsh winhttp>
netsh winhttp>set proxy 127.0.0.1:1080
netsh winhttp>reset proxy
show proxy

set http_proxy=http://http.proxy.com:12345
set https_proxy=http://https.proxy.com:23456
set socks5_proxy=socks5://https.proxy.com:23456

git config --global http.proxy %http_proxy%
git config --global https.proxy %https_proxy%

git config --get http.proxy
git config --get https.proxy

git config --global --unset http.proxy

IE/Chrome: 注册表
路径:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
键:ProxyEnable:1 ProxyServer:11.1111.11:111
Firefox: prefs.js文件
路径:C:\Users\li\AppData\Roaming\Mozilla\Firefox\Profiles\ncc8unbx.default\prefs.js
内容:
user_pref("network.proxy.http", "11.11.11.11");
user_pref("network.proxy.http_port", 333);
user_pref("network.proxy.socks", "11.11.11.11");
user_pref("network.proxy.socks_port", 333);
user_pref("network.proxy.ssl", "11.11.11.11");
user_pref("network.proxy.ssl_port", 333);

相关文章

  • 2021-09-22

    Windows cmd 设置代理设置 HTTP 代理: socks5代理设置: 取消代理: Windows git...

  • 2020-06-22 Windows 10 无法设置代理服务(设

    Windows 10 无法设置代理服务(设置完后无法保存) Windows 10 ,无法使用代理服务,即两种方法都...

  • windows设置代理

    x:>netshnetsh>winhttpnetsh winhttp>netsh winhttp>set prox...

  • Windows / Linux / MacOS 设置代理上网的方

    本文汇总了 Windows / Linux / MacOS 设置代理上网的各种方法,总结如下: 1、设置系统代理(...

  • WSL 2 配置代理

    在 Windows 上设置好代理,连上了谷歌开开心心,但是 WSL 2 不能共享 Windows 的代理策略,如果...

  • manjaro设置本地代理

    设置本地代理 Linux图形化下设置本地代理与Windows类似,原理都是监听本地(127.0.0.1)的指定端口...

  • ubuntu windows 命令行设置代理

    1、ubuntu 2、例子 3、windows Dos命令行设置代理

  • windows终端设置代理

    前言 最近在学习go语言,经常需要在终端下下载外部资源,采用代理上网的方式解决,下面简单记录一下操作过程。 设置代...

  • Windows cmd 设置代理

    cmd 在执行其他命令之前,先执行一下: 上面代理地址只是示例,请换成自己的代理地址。 powershell 无效...

  • git clone 慢 设置代理

    常用操作 设置代理 临时 永久 对比结果 其他操作 小飞机的代理默认端口windows:http://127.0....

网友评论

      本文标题:windows设置代理

      本文链接:https://www.haomeiwen.com/subject/uebcoftx.html