Set up scientific Internet access for ss and support PC/mobile client and router ., Sspc
How can coders not use Google?
Let me build the shadowsocks service.
Shadowsocks uses the socks5 proxy to protect network traffic. It is widely used in Mainland China to break through the Great Wall (GFW) to browse blocked content.
Shadowsocks can be divided into server and client. Before use, you must first deploy the server on a server that supports Python, and then connect to and create a local proxy through the client.
Official Website: https://shadowsocks.org/en/download/clients.html
To install the FQ service, a foreign server, such as The Hong Kong and U.S. servers, is required first.
You can purchase them from aws and use free servers.
1. ss installation and configuration:
Yum install python-setuptools & easy_install pippip install shadowsocks
Ssserver-p 443-k password-m aes-256-cfb -- user nobody-d start
# Or
Ssserver-c/shadow. cnf-d start
# Shadow. cnf
{
"Server": "11.41.72.21 ",
"Port_password ":{
"443": "password"
},
"Timeout": 300,
"Method": "aes-256-cfb"
}
Ii. window client:
Window configuration is also very simple
In this way, you can access google.
3. linux client Configuration
sslocal -c /shadow/sslocal.cnf -d start#/shadow/sslocal.cnf {"server" : "47.88.105.243 ","server_port" : 443,"password" : "password","method" : "aes-256-cfb","remarks" : ""}
Iv. Smart router configuration
Currently, many smart routers are developed based on openwrt. openwrt is a micro-linux, so we can install and configure it according to linux.
Reference setup: https://github.com/shadowsocks/openwrt-shadowsocks
Git clone https://github.com/shadowsocks/openwrt-shadowsocks.git package/shadowsocks-libev # select the package to be compiled Network> shadowsocks-libevmake menuconfig # Start to compile make package/shadowsocks-libev/compile V = 99
After the vro enables ss, we can directly use the vroffq, and the client does not need to be configured.