Shadowsocks Server Install and Start

Home page

Description

Shadowsocks is a VPN software, We can use it to setup our own VPN

Install

pip install shadowsocks

config file

1
2
3
4
5
6
7
8
9
10
11
12
{
"port_password":
{
"8989":"password0",
"9001":"password1",
"9002":"password2",
"9003":"password3",
"9004":"password4"
},
"method":"aes-256-cfb",
"timeout":600
}

start

ssserver -c config.json -d start

0%