为终端设置SS proxy
做开发的同学,应该都会经常接触终端,有些时候我们在终端会做一些网络操作,比如下载gradle包等,由于一些你懂我也懂的原因,某些网络操作不是那么理想,这时候我们就需要设置代理来自由地访问网络。
小飞机是我们常用的代理工具,它使用socks5协议,而终端很多工具目前只支持http和https等协议,对socks5协议支持不够好,所以我们为终端设置ss的思路就是将socks协议转换成http协议,然后为终端设置即可。仔细想想也算是适配器模式的一种现实应用吧。
想要进行转换,需要借助工具,这里我们采用比较知名的polipo来实现。polipo是一个轻量级的缓存web代理程序。闲话休叙,让我们开始动手吧。
准备工作
首先需要配置好一个可用的ss,下载地址: aHR0cHM6Ly9naXRodWIuY29tL3NoYWRvd3NvY2tzL2dvLXNoYWRvd3NvY2tzMi9yZWxlYXNlcw==
安装和配置ss,请自行搜索解决。
安装
Fedora安装
sudo yum install polipo
Mac下使用Homebrew安装
brew install polipo
Ubuntu安装
sudo apt-get install polipo
修改配置(Linux)
如下打开配置文件
sudo vim /etc/polipo/config
设置ParentProxy为ss,通常情况下本机ss的地址如下
# Uncomment this if you want to use a parent SOCKS proxy: socksParentProxy = "localhost:1080" socksProxyType = socks5
设置日志输出文件
logFile=/var/log/polipo logLevel=4
修改配置(Mac)
设置每次登陆启动polipo
ln -sfv /usr/local/opt/polipo/*.plist ~/Library/LaunchAgents
修改文件/usr/local/opt/polipo/homebrew.mxcl.polipo.plist设置parentProxy
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>homebrew.mxcl.polipo</string> <key>RunAtLoad</key> <true/> <key>KeepAlive</key> <true/> <key>ProgramArguments</key> <array> <string>/usr/local/opt/polipo/bin/polipo</string> <string>socksParentProxy=localhost:1080</string> </array> <!-- Set `ulimit -n 20480`. The default OS X limit is 256, that's not enough for Polipo (displays 'too many files open' errors). It seems like you have no reason to lower this limit (and unlikely will want to raise it). --> <key>SoftResourceLimits</key> <dict> <key>NumberOfFiles</key> <integer>20480</integer> </dict> </dict> </plist>
修改的地方是增加了<string>socksParentProxy=localhost:1080</string>
启动(Linux)
先关闭正在运行的polipo,然后再次启动
sudo service polipo stop sudo service polipo start
启动(Mac)
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.polipo.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.polipo.plis
注意:请确保ss正常工作。
验证及使用
安装完成就需要进行验证是否work。这里展示一个最简单的验证方法,打开终端,如下执行
07:56:24-androidyue/var/log$ curl ip.gs 当前 IP:125.39.112.15 来自:中国天津天津 联通 08:09:23-androidyue/var/log$ http_proxy=http://localhost:8123 curl ip.gs 当前 IP:210.140.193.128 来自:日本日本
如上所示,为某个命令设置代理,前面加上http_proxy=http://localhost:8123 后接命令即可。
注:8123是polipo的默认端口,如有需要,可以修改成其他有效端口。
设置别名
bash中有一个很好的东西,就是别名alias. Linux用户修改~/.bashrc,Mac用户修改~/.bash_profile文件,增加如下设置
alias hp="http_proxy=http://localhost:8123"
然后Linux用户执行source ~/.bashrc,Mac用户执行source ~/.bash_profile
测试使用
20:39:39-androidyue~$ curl myip.ipip.net 当前 IP:125.39.112.14 来自:中国天津天津 联通 20:39:44-androidyue~$ hp curl myip.ipip.net 当前 IP:210.140.193.128 来自:日本日本 20:39:48-androidyue~$
当前会话全局设置
如果嫌每次为每一个命令设置代理比较麻烦,可以为当前会话设置全局的代理。即使用export http_proxy=http://localhost:8123即可。 如果想撤销当前会话的http_proxy代理,使用 unset http_proxy 即可。 示例效果如下
21:29:49-androidyue~$ curl -s https://api.ip.sb/geoip | jq { "organization": "China Unicom Liaoning", "longitude": 103.8399, "city": "Lanzhou", "timezone": "Asia/Shanghai", "isp": "China Unicom Liaoning", "offset": 28800, "region": "Gansu", "asn": 4837, "asn_organization": "CHINA UNICOM China169 Backbone", "country": "China", "ip": "125.39.112.14", "latitude": 36.057, "continent_code": "AS", "country_code": "CN", "region_code": "GS" } 21:29:52-androidyue~$ export http_proxy=http://localhost:8123 21:30:07-androidyue~$ curl -s https://api.ip.sb/geoip | jq { "organization": "IDC Frontier", "longitude": 139.69, "timezone": "Asia/Tokyo", "isp": "IDC Frontier", "offset": 32400, "asn": 4694, "asn_organization": "IDC Frontier Inc.", "country": "Japan", "ip": "210.140.193.128", "latitude": 35.69, "continent_code": "AS", "country_code": "JP" } 21:30:12-androidyue~$ unset http_proxy 21:30:37-androidyue~$ curl -s https://api.ip.sb/geoip | jq { "organization": "China Unicom Liaoning", "longitude": 103.8399, "city": "Lanzhou", "timezone": "Asia/Shanghai", "isp": "China Unicom Liaoning", "offset": 28800, "region": "Gansu", "asn": 4837, "asn_organization": "CHINA UNICOM China169 Backbone", "country": "China", "ip": "125.39.112.14", "latitude": 36.057, "continent_code": "AS", "country_code": "CN", "region_code": "GS" }
如果想要更长久的设置代理,可以将export http_proxy=http://localhost:8123加入.bashrc或者.bash_profile文件
设置Git代理
复杂一些的设置Git代理
git clone https://android.googlesource.com/tools/repo --config http.proxy=localhost:8123 Cloning into 'repo'... remote: Counting objects: 135, done remote: Finding sources: 100% (135/135) remote: Total 3483 (delta 1956), reused 3483 (delta 1956) Receiving objects: 100% (3483/3483), 2.63 MiB | 492 KiB/s, done. Resolving deltas: 100% (1956/1956), done.
其实这样还是比较复杂,因为需要记忆的东西比较多,下面是一个更简单的实现
首先,在.bashrc或者.bash_profile文件加入这一句。
gp=" --config http.proxy=localhost:8123"
然后执行source操作,更新当前bash配置。
更简单的使用git的方法
git clone https://android.googlesource.com/tools/repo $gp Cloning into 'repo'... remote: Counting objects: 135, done remote: Finding sources: 100% (135/135) remote: Total 3483 (delta 1956), reused 3483 (delta 1956) Receiving objects: 100% (3483/3483), 2.63 MiB | 483 KiB/s, done. Resolving deltas: 100% (1956/1956), done.
开始自由快速的开发吧。
转载自:aHR0cHM6Ly9kcm9pZHl1ZS5jb20vYmxvZy8yMDE2LzA0LzA0L3NldC1zaGFkb3dzb2Nrcy1wcm94eS1mb3ItdGVybWluYWwv