終端接入虛擬專用網
阿新 • • 發佈:2020-07-17
Mac mac
版權宣告:轉載請註明出處!!! https://blog.csdn.net/houzhiwen_yy/article/details/71081284原理是將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