shadowsocks installation

explain how to install shadowsocks on ubuntu

install

1
2
3
$ sudo apt-get install python-pip
$ sudo apt-get install python-setuptools m2crypto
$ sudo pip install shadowsocks

configure

create as json file named shadsocks.json (or any name you like) to set your proxy properties, such as:

1
2
3
4
5
6
7
8
{
"server":"12.34.56.78",
"server_port":5001,
"local_port":1080,
"password":"zheshimima",
"timeout":600,
"method":"aes-256-cfb"
}

run

run client

1
$ sslocal -c shadowsocks.json