1、安裝shadowsocks
sudo apt-get install python-pip
sudo pip install shadowsocks
2、創建配置文件shadowsocks.json,其中服務器地址、端口號、密碼為為購買或免費使用的服務器(比如www.ishadowsocks.org)
{ "server": "xxxx.com", "server_port": 52239, "local_address": "127.0.0.1", "local_port": 1080, "password": "SOME_PASSWORD", "timeout": 600, "method": "aes-256-cfb", "fast_open": false}
3、啟動shadowsocks
sslocal -c shadowsocks.json
4、安裝polipo,進行二次轉發(shadowsocks使用socks5協議通信,需搭配瀏覽器插件使用,若想要在系統全局使用,可使用polipo進行二次轉發)
sudo apt-get install polipo
5、編輯配置文件,保存到/etc/polipo/config
# This file only needs to list configuration variables that deviate# from the default values. See /usr/share/doc/polipo/examples/config.sample# and "polipo -v" for variables you can tweak and further information. logSyslog = truelogFile = /var/log/polipo/polipo.log proxyAddress = "0.0.0.0" socksParentProxy = "127.0.0.1:1080"socksProxyType = socks5 chunkHighMark = 50331648objectHighMark = 16384 serverMaxSlots = 64serverSlots = 16serverSlots1 = 32
6、重啟polipo服務
sudo service polipo restart
7、設置環境變量(可添加至~/.bashrc文件中使所有shell均可實現全局SOCKS5訪問)
export http_proxy="http://127.0.0.1:8123"
export https_proxy="https://127.0.0.1:8123"
8、檢測一下是否可以通過socks5協議獲取google主頁面
curl www.google.com
如果成功則說明可以訪問。
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對VEVB武林網的支持。如果你想了解更多相關內容請查看下面相關鏈接
新聞熱點
疑難解答