1、安裝shadowsocks
sudo apt-get install python-pip
sudo pip install shadowsocks
2、創(chuàng)建配置文件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,進行二次轉(zhuǎn)發(fā)(shadowsocks使用socks5協(xié)議通信,需搭配瀏覽器插件使用,若想要在系統(tǒng)全局使用,可使用polipo進行二次轉(zhuǎn)發(fā))
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 = true
logFile = /var/log/polipo/polipo.log
proxyAddress = "0.0.0.0"
socksParentProxy = "127.0.0.1:1080"
socksProxyType = socks5
chunkHighMark = 50331648
objectHighMark = 16384
serverMaxSlots = 64
serverSlots = 16
serverSlots1 = 32
6、重啟polipo服務
sudo service polipo restart
7、設置環(huán)境變量(可添加至~/.bashrc文件中使所有shell均可實現(xiàn)全局SOCKS5訪問)
export http_proxy="http://127.0.0.1:8123"
export https_proxy="https://127.0.0.1:8123"
8、檢測一下是否可以通過socks5協(xié)議獲取google主頁面
curl www.google.com
如果成功則說明可以訪問。
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關內(nèi)容請查看下面相關鏈接