作者:编舞木煜率_841 | 来源:互联网 | 2023-10-17 18:19
本文由编程笔记#小编为大家整理,主要介绍了markdown [软件代理设置]相关的知识,希望对你有一定的参考价值。
> 本文由 [简悦 SimpRead](http://ksria.com/simpread/) 转码, 原文地址 https://www.jianshu.com/p/ff4093ed893f
>
> 本文基于https://www.jianshu.com/p/ff4093ed893f 上进行修改
# 软件 Proxy 设置
Proxy 一般有2种协议,一种是 HTTP/HTTPS 协议,一种是 SOCKS 协议。**优先使用 SOCKS 协议的 SOCKS5 版本**。[2种协议的区别 待补充外部引用]
各平台的 Shadowsocks 客户端除了提供一个本地的 socks5 Proxy ,还会提供一个本地的 http Proxy 。
在 ShadowSocks 中的高级设置中查看 socks5 协议监听的端口,HTTP Proxy 设置中查看 http 协议监听的端口。
## Chrome 浏览器 Proxy 设置
* 使用 [`Proxy SwitchyOmega`](https://chrome.google.com/webstore/detail/proxy-switchyomega/padekgcemlokbadohgkifijomclgjgif?hl=zh-CN) 这个插件来管理 proxy。
* 在 chrome 使用 proxy 管理插件的时候注意为每个情景填写正确的协议名和端口。
## Sublime Text 3 PackageControl Proxy 设置(仅支持http协议)
* 打开 “Preferences -> Package Settings -> Package Control-> Settings – User”
* 在 JSON 文件中插入
```json
"http_proxy": "http://127.0.0.1:7070",
"https_proxy": "http://127.0.0.1:7070",
```
> 注意:Sublime Text 3现仅支持http协议, 所以要注意socks5和http端口号的区别
## git Proxy 设置
`git` 目前支持的三种协议`http://`和`https://`,`ssh://`,`git://`
* 对于 HTTP/HTTPS 协议(`http://`和`https://`)设置 Proxy
远程仓库链接格式类似:
```
http://github.com/cms-sw/cmssw.git
https://github.com/cms-sw/cmssw.git
```
实际调用 `libcurl` 与服务器通信,详见[curl(1)](http://curl.haxx.se/docs/manpage.html)的`--proxy`选项以及[git-config(1)](https://www.kernel.org/pub/software/scm/git/docs/git-config.html)中的`http.proxy`条目。
* 直接使用[**终端的 Proxy 设置**](#终端-proxy-设置)
* 命令行设置与取消
```sh
# 设置全域有效
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
####
# 仅对github.com有效
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
# 取消代理
git config --global --unset http.https://github.com.proxy
```
> `--global` 全局
* 直接修改`~/.gitconfig`文件(全局)或项目文件夹中的`.gitconfig`,添加或删除
```
[http]
proxy = socks5://127.0.0.1:1080
[https]
proxy = socks5://127.0.0.1:1080
# 仅对github.com有效
[http "https://github.com"]
proxy = socks5://127.0.0.1:1080
```
* 对于 SSH 协议(`ssh://`)设置 Proxy
远程仓库链接格式类似:
```
git@github.com:cms-sw/cmssw.git
ssh://git@github.com/cms-sw/cmssw.git
```
实际调用 `ssh` 命令与服务器通信,需要配置 ssh 的 ProxyCommand 参数。
* 修改`~/.ssh/config` 文件添加
```
Host github.com
HostName github.com
############
# 如果使用git@ssh.github.com进行传输,HostName和Port设置如下,
# 详见 https://help.github.com/articles/using-ssh-over-the-https-port/
# HostName ssh.github.com
# Port 443
############
User git
# HTTP Proxy:
# ProxyCommand connect -H 127.0.0.1:7070 %h %p
# SOCKS5 Proxy:
# ProxyCommand connect -S 127.0.0.1:1080 %h %p
```
> 实际 `ProxyCommand` 需要调试过才能确定。
> 该 ssh 设置仅对 User为: `git` 的程序访问 HostName为: `github.com` 域名有效.
* 对于 git 协议(`git://`)设置 Proxy
远程仓库链接格式类似:
```
git://github.com/cms-sw/cmssw.git
```
git 协议比较特殊,需要由 `core.gitproxy` 设置一个额外的 proxy 脚本,才能使用上 socks 代理。
* 编写 git-proxy 脚本,例如:
```sh
#!/bin/sh
## Proxy wrapper for git protocol (9418).
## git config --global core.gitproxy "proxy-command"
## 仅对example.com域名有效
## git config --global core.gitproxy '"proxy-command" for example.com'
exec connect -S 127.0.0.1:1080 "$@"
```
* 设置`core.gitproxy`
命令行
```
# 设置
git config --global core.gitproxy "git-proxy"
# 仅对example.com域名有效
git config --global core.gitproxy '"git-proxy" for example.com'
# 取消
git config --global --unset core.gitproxy
```
设置文件
```
[core]
gitproxy = /path/to/git-proxy
[core]
gitproxy = "/path/to/git-proxy" for "example.com"
```
或者
```
export GIT_PROXY_COMMAND="/path/to/git-proxy"
```
> 实际 `git-proxy` 脚本需要调试后确定。
* `connect`工具
[项目页](https://bitbucket.org/gotoh/connect/wiki/Home)
* Mac 下安装
```sh
brew install connect
```
> git 三种协议的 Proxy 设置互不影响,互不冲突。
> 具体看 `man git-config`
* 参考:
1. [如何为 Git 设置代理?](https://segmentfault.com/q/1010000000118837)
1. [设置 Git Proxy ](https://imciel.com/2016/06/28/git-proxy/)
1. [Tutorial: how to use git through a proxy](http://cms-sw.github.io/tutorial-proxy.html)
## 终端 Proxy 设置
* 原理:export http_proxy、https_proxy 或 ALL_PROXY,那么wget curl 这类网络命令依据该设置进行 Proxy。
```
# 开启 Proxy
export http_proxy=socks5://127.0.0.1:1080
export https_proxy=socks5://127.0.0.1:1080
# 或者直接设置ALL_PROXY
export ALL_PROXY=socks5://127.0.0.1:1080
# 关闭 Proxy
unset http_proxy
unset https_proxy
unset ALL_PROXY
```
> 可以在终端运行,也可以写入shell配置文件`.bashrc`或者`.zshrc`。也可以设置函数或者别名,便于开/关 Proxy。
> 注意, 修改完`.bashrc`或者`.zshrc` 后重启终端或 `source` 生效。
> 可以通过`curl -i http://ip.cn`查看 IP 改变来测试是否生效
* 通过设置 alias 简写来简化操作
```
alias setproxy="export ALL_PROXY=socks5://127.0.0.1:1080"
alias unsetproxy="unset ALL_PROXY"
aliaa ip="curl -i http://ip.cn"
```
* 参考:
1. [设置socks5代理](https://www.jianshu.com/p/ff4093ed893f)
1. [设置 Git 代理](https://imciel.com/2016/06/28/git-proxy/)
1. [macOS 终端走Proxy ](http://gold.xitu.io/entry/5821840cd203090055134cc0)