You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Beau Kujath
b95ad413fd
|
11 months ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
history_setup.txt | 2 years ago | |
setup_socks.sh | 2 years ago |
README.md
Steps to setup Linux as BPB shadowsocks client
-
Install shadowsocks client: 'sudo apt-get install shadowsocks-libev'
-
Disable the automatically started service: sudo systemctl stop shadowsocks-libev sudo systemctl disable shadowsocks-libev
-
Make local shadowsocks config file:
sudo vim /etc/shadowsocks-libev/local-config.json
-
Add in bpb server setup:
{
"server": "207.246.62.210",
"mode": "tcp_and_udp",
"server_port": 8080,
"local_address": "127.0.0.1",
"local_port": 1080,
"password": "socksrocks",
"timeout": 60,
"method": "aes-256-gcm"
}
Start the shadowsocks service: sudo systemctl start shadowsocks-libev-local@local-config.service
Check the status: sudo systemctl status shadowsocks-libev-local@local-config.service
Enable service on system startup: sudo systemctl enable shadowsocks-libev-local@local-config.service
Verify it is working: url --proxy socks5://127.0.0.1:1080 https://ifconfig.me