前言
本篇文章介绍如何在mac终端设置代理服务器,有时候,我们需要在终端进行外网的资源访问,比如我构建v8引擎项目的时候,需要使用gclient
更新组件和下载构建工具。如果单单设置了计算机的代理,依然是无法下载资源的,需要在终端设置代理
终端查看网络信息
使用下面的命令查看本地网络信息
curl cip.cc
输出信息如下:
// 这里是真实的IP,我用XXX号代替了
IP : XXX.XXX.XXX.XXX
地址 : 中国 北京
运营商 : 联通
数据二 : 北京市 | 联通
数据三 : 中国北京北京市 | 联通
URL : http://www.cip.cc/XXX.XXX.XXX.XXX
使用下面的命令查看本地网络的详细信息
curl ipinfo.io
输出信息如下:
{
"ip": "XXX.XXX.XXX.XXX",
"city": "Beijing",
"region": "Beijing",
"country": "CN",
"loc": "XX.XXXX,XXX.XXXX",
"org": "AS4808 China Unicom Beijing Province Network",
"timezone": "Asia/Shanghai",
"readme": "https://ipinfo.io/missingauth"
}
配置前的访问测试
配置前,我们访问一下谷歌的服务器
curl -v google.com
输出信息
* Could not resolve host: google.com
* Closing connection 0
curl: (6) Could not resolve host: google.com
访问失败
配置代理
在终端输入
// 如果你的终端标题包含-zsh,使用这个命令
open ~/.zsh_profile
或者
// 如果你的终端标题包含-bash,使用这个命令
open ~/.bash_profile
打开环境变量配置文件
输入:
# proxy list
// 使用代理服务器
alias proxy='export https_proxy=http://127.0.0.1:7890;export http_proxy=http://127.0.0.1:7890;export all_proxy=socks5://127.0.0.1:7890'
// 取消使用代理服务器
alias unproxy='unset http_proxy;unset https_proxy;unset all_proxy'
// 测试服务器是否可用
alias proxy_test='curl -v google.com'
其中127.0.0.1
是你代理服务器的IP
7890
是你代理服务器的端口,这两个值可以从你的FQ软件获取
配置完成后保存退出配置文件
然后输入以使你的配置文件生效
// 如果你的终端标题包含-zsh,使用这个命令
source ~/.zsh_profile
或者
// 如果你的终端标题包含-bash,使用这个命令
source ~/.bash_profile
测试
然后在终端输入
proxy
没什么反应就是代理开始使用了
然后在终端输入
proxy_test
进行测试
输出:
* Uses proxy env variable http_proxy == 'http://127.0.0.1:7890'
* Trying 127.0.0.1:7890...
* Connected to 127.0.0.1 (127.0.0.1) port 7890 (#0)
> GET http://google.com/ HTTP/1.1
> Host: google.com
> User-Agent: curl/7.88.1
> Accept: */*
> Proxy-Connection: Keep-Alive
// 后面的我省略了,看到这些信息就证明好使了,
// 然后就可以在终端访问外网的信息了
...