CentOS VPS安装shadowsocks代理服务端
时间:2014-09-14 01:30 来源:linux.it.net.cn 作者:it
shadowsocks是一个轻量级的socks5代理软件,shadowsocks开发语言有nodejs、go、python、c。
shadowsocks python语言版
https://github.com/clowwindy/shadowsocks
shadowsocks go语言版
https://github.com/hugozhu/shadowsocks-go
shadowsocks nodejs语言版
https://github.com/clowwindy/shadowsocks-nodejs
shadowsocks libev版(使用C语言+libev库+openssl开发)
https://github.com/madeye/shadowsocks-libev
shadowsocks libuv版(很久没更新了)
https://github.com/dndx/shadowsocks-libuv
网上推荐安装python版和Shadowsocks-libev版,这里安装标准python版,系统为CentOS6。
一、服务端
1、安装库和shadowsocks
yum install m2crypto python-setuptools
easy_install pip
pip install shadowsocks
2、创建配置文件
vim /etc/shadowsocks.json
写入:
{
"server":"my_server_ip",
"server_port":8888,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"123456",
"timeout":600,
"method":"aes-128-cfb"
}
字段说明:
server:服务器ip
server_port:服务器数据端口
local_address:本地端监听的地址
local_port:本地代理端口
password:连接密码
timeout:超时
method:加密方式,推荐aes-128-cfb
3、后台启动
nohup /usr/bin/ssserver -c /etc/shadowsocks.json > /dev/null 2>&1 &
也可加入/etc/rc.local实现开机启动服务
二、客户端
安装windows客户端shadowsocks-gui:
https://sourceforge.net/projects/shadowsocksgui/files/dist/
运行shadowsocks.exe,填写设置的参数保存。
firefox使用autoproxy扩展20131215版能够使用,http://fxthunder.com/blog/archives/2866 感谢作者!
参考资料:
https://github.com/clowwindy/shadowsocks/wiki/Shadowsocks-使用说明
(责任编辑:IT)
shadowsocks是一个轻量级的socks5代理软件,shadowsocks开发语言有nodejs、go、python、c。 shadowsocks python语言版 https://github.com/clowwindy/shadowsocks shadowsocks go语言版 https://github.com/hugozhu/shadowsocks-go shadowsocks nodejs语言版 https://github.com/clowwindy/shadowsocks-nodejs shadowsocks libev版(使用C语言+libev库+openssl开发) https://github.com/madeye/shadowsocks-libev shadowsocks libuv版(很久没更新了) https://github.com/dndx/shadowsocks-libuv 网上推荐安装python版和Shadowsocks-libev版,这里安装标准python版,系统为CentOS6。
一、服务端 { "server":"my_server_ip", "server_port":8888, "local_address": "127.0.0.1", "local_port":1080, "password":"123456", "timeout":600, "method":"aes-128-cfb" }
字段说明:
3、后台启动
二、客户端 https://sourceforge.net/projects/shadowsocksgui/files/dist/ 运行shadowsocks.exe,填写设置的参数保存。 firefox使用autoproxy扩展20131215版能够使用,http://fxthunder.com/blog/archives/2866 感谢作者!
参考资料: |