linux環(huán)境下設(shè)置shadowsocks+polipo全局代理
1、安裝shadowsockssudo apt-get install python-pip
sudo pip install shadowsocks
2、創(chuàng)建配置文件shadowsocks.json,其中服務(wù)器地址、端口號、密碼為為購買或免費(fèi)使用的服務(wù)器(比如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、啟動(dòng)shadowsockssslocal -c shadowsocks.json
4、安裝polipo,進(jìn)行二次轉(zhuǎn)發(fā)(shadowsocks使用socks5協(xié)議通信,需搭配瀏覽器插件使用,若想要在系統(tǒng)全局使用,可使用polipo進(jìn)行二次轉(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服務(wù)sudo service polipo restart
7、設(shè)置環(huán)境變量(可添加至~/.bashrc文件中使所有shell均可實(shí)現(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)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對本站的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
版權(quán)聲明:本站文章來源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非maisonbaluchon.cn所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。
關(guān)注官方微信