ShadowsocksR Tunnel Proxy TO Bypass GFW

Introduction:

This is a fast tunnel proxy can help you visit all the website outside wall, such like google.com, youtube.com, facebook.com, etc. Thank for the github.com @breakwa11.

Note: If you have any questions about this, you can find the answer from www.baidu.com or @逗比根据地. Enjoy your trip, it will take you into the world Net.

Server:

  1. Purchase a VPS [Ubuntu 14 Enough]
  2. Enter your VPS to configurate it such like this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Install the git. 
sudo apt-get install git -y

# Github URL<https://github.com/teddysun/shadowsocks_install.git>
git clone https://github.com/teddysun/shadowsocks_install.git

# Enter the folder.
cd ./shadowsocks_install/
chmod +x ./shadowsocksR.sh
./shadowsocksR.sh

#######CONFIG FIle######
{
"server":"0.0.0.0", # Input Server IP
"server_ipv6": "[::]",
"local_address":"127.0.0.1",
"local_port":1080,
"port_password":{
"9000":"password0",
"9001":"password1",
"9002":"password2",
"9003":"password3",
"9004":"password4"
},
"timeout":300,
"method":"aes-256-cfb",
"protocol": "auth_chain_a",
"protocol_param": "",
"obfs": "plain",
"obfs_param": "",
"redirect": "",
"dns_ipv6": false,
"fast_open": false,
"workers": 1
}
################################

# Start on Background.
./logrun.sh

# Start up with OS on:
chmod +x /etc/rc.local
vi /etc/rc.local
# appent on the end line
/bin/bash /usr/local/shadowsocks/logrun.sh

Client

Linux:

1
2
3
4
5
6
7
8
9
10
11
# Clone the repository from github.com
git clone https://github.com/ssrbackup/shadowsocksr.git
# Edit the config file.
cd ./shadowsocksr
gedit ./config.json
# As same as the server.
cp ./config.json /etc/shadowsocks.json
# Start SSR service <Current Path: ./shadowsocksr/shadowsocks/>
# Start by config file:
cd ./shadowsocks
python local.py -c /etc/shadowsocks.json -d start/stop/restart

Android/IOS/Windows:

1
2
3
4
5
# Download the app which can run ShadowsocksR on your device.
链接: https://pan.baidu.com/s/1wsUbHvy_hnRYB-zAePRc6w 提取码: 343y

# Configurate file.
As same as server.

Global Agent with Linux and ShadowsocksR:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Install privoxy
sudo apt-get install privoxy
sudo gedit /etc/privoxy/config
# Annotate this line
# listen-address localhost:8118

# Append this two line at end.
forward-socks5 / 127.0.0.1:1080 . # This line has a dot(.), don't ignore it.
listen-address 127.0.0.1:8118

# Config the global agent http proxy.
sudo gedit /etc/environment
# Append this line at end.
export http_proxy=http://127.0.0.1:8118
export https_proxy=https://127.0.0.1:8118

Chrome SwitchyOmega:

1
2
Github: https://github.com/FelisCatus/SwitchyOmega/releases
Website: http://proxy.expand.ejcms.com/

image

Mikoy Chinese wechat
Subscribe my public wechat account by scanning.

--------------------   ENDING   --------------------