原理是將SS轉化成http代理提供命令行終端使用。 1. privoxy安裝 2. privoxy配置 打開配置文件 加入下麵這兩項配置項 第一行設置privoxy監聽任意IP地址的8118埠。第二行設置本地socks5代理客戶端埠,註意不要忘了最後有一個空格和點號。 3. privoxy啟動 ...
原理是將SS轉化成http代理提供命令行終端使用。
1. privoxy安裝
brew install privoxy
2. privoxy配置
打開配置文件 /usr/local/etc/privoxy/config
vim /usr/local/etc/privoxy/config
加入下麵這兩項配置項
listen-address 0.0.0.0:8118
forward-socks5 / localhost:1080 .
第一行設置privoxy監聽任意IP地址的8118埠。第二行設置本地socks5代理客戶端埠,註意不要忘了最後有一個空格和點號。
3. privoxy啟動
brew services start privoxy
4. 查看是否啟動成功
netstat -na | grep 8118
5. privoxy使用
在命令行終端中輸入如下命令後,該終端即可使用VPN了。
export http_proxy='http://localhost:8118'
export https_proxy='http://localhost:8118'
如果不想用了取消即可
unset http_proxy
unset https_proxy
如果關閉終端視窗,功能就會失效,如果需要代理一直生效,則可以把上述兩行代碼添加到 ~/.bash_profile
文件最後。
vim ~/.bash_profile
export http_proxy='http://localhost:8118'
export https_proxy='http://localhost:8118'
使用配置文件生效
source ~/.bash_profile