[toc]
前言
在下载一些需要vpn下载公司内网的源码或者认证时,必不可少的需要使用代理,与普通的网页及应用代理不同,在mac的终端中并没有开启默认的代理模式,所以需要手动进行设置,设置分为两部分:设置终端代理、设置其他IED 代理等
准备工作与环境
在终端设置代理之前,需要准备相应的环境。
1、代理服务器:诸如socks协议或者http协议的服务端,一般由公司运维已经搭建好。
2、代理客户端:本地协议转换及端口开放的客户端,一般默认端口号为1080。
二、配置过程
建议直接配置bash
bash(mac osx系统默认命令行)配置
- 修改用户全局配置文件:
vim ~/.bashrc
- 在配置文件末尾添加代理服务器信息
# proxy
# 端口号注意不要填错
alias proxy='export all_proxy=socks5://127.0.0.1:1080'
alias unproxy='unset all_proxy'
alias ip='curl ipinfo.io
- 使配置生效
source ~/.bashrc
zsh命令行配置
- 户全局配置文件:
vim ~/.zshrc
- 件末尾添加代理服务器信息
# proxy
alias proxy='export all_proxy=socks5://127.0.0.1:1080'
alias unproxy='unset all_proxy'
alias ip='curl ipinfo.io
3、使配置生效
source ~/.zshrc
三、查看配置生效
使用ctrl命令来查看当前终端的ip情况,可以使用如下链接查看现有IP:
- 开启代理并查看IP
#开启代理
proxy
# 已经配置过别名, 直接敲ip
ip
# curl ipinfo.io
{
"ip": "159.138.111.206",
"hostname": "ecs-159-138-111-206.compute.hwclouds-dns.com",
"city": "Singapore",
"region": "Singapore",
"country": "SG",
"loc": "1.2897,103.8501",
"org": "AS136907 HUAWEI CLOUDS",
"postal": "048508",
"timezone": "Asia/Singapore",
"readme": "https://ipinfo.io/missingauth"
}
# curl cip.cc
IP : 159.138.111.206
地址 : 新加坡 新加坡
数据二 : 新加坡
数据三 :
URL : http://www.cip.cc/159.138.111.206
如何关闭代理模式
# unproxy
#查看ip
ip
#返回结果示例
IP:xx.xx..xx.xx 内网
四、配置其他代理
此时开启proxy
后,对于系统级命令已经完成了代理,但其他譬如git或者golang在使用时需要环境变量支持。
在命令行中输入一下命令,添加临时环境变量
export http_proxy=socks5://127.0.0.1:1080
export https_proxy=socks5://127.0.0.1:1080
五、配置git代理
git 的两种形式
# https
git clone https://github.com/owner/git.git
# ssh
git clone git@github.com:owner/git.git
查看
# http & https
git config --global --get http.proxy
git config --global --get https.proxy
配置
-
http
&https
# 统一配置
git config –global http.proxy 'socks5://127.0.0.1:1080'
# 单独配置
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"
ssh
# 修改文件(不存在则新建):
~/.ssh/config
# 必须是 github.com
Host github.com
HostName github.com
User git
# 走 HTTP 代理
# ProxyCommand socat - PROXY:127.0.0.1:%h:%p,proxyport=8080
# 走 socks5 代理(如 Shadowsocks)
# ProxyCommand nc -v -x 127.0.0.1:1080 %h %p
取消
git config --global --unset http.proxy
git config --global --unset https.proxy
有疑问加站长微信联系(非本文作者)