RE env for inspecting APKs
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.

41 lines
971 B

  1. ## Steps to setup Linux as BPB shadowsocks client
  2. 1. Install shadowsocks client: 'sudo apt-get install shadowsocks-libev'
  3. 2. Disable the automatically started service:
  4. sudo systemctl stop shadowsocks-libev
  5. sudo systemctl disable shadowsocks-libev
  6. 3. Make local shadowsocks config file: `sudo vim /etc/shadowsocks-libev/local-config.json`
  7. 4. Add in bpb server setup:
  8. ```
  9. {
  10. "server": "207.246.62.210",
  11. "mode": "tcp_and_udp",
  12. "server_port": 8080,
  13. "local_address": "127.0.0.1",
  14. "local_port": 1080,
  15. "password": "socksrocks",
  16. "timeout": 60,
  17. "method": "aes-256-gcm"
  18. }
  19. ```
  20. Start the shadowsocks service: `sudo systemctl start shadowsocks-libev-local@local-config.service`
  21. Check the status: `sudo systemctl status shadowsocks-libev-local@local-config.service`
  22. Enable service on system startup: `sudo systemctl enable shadowsocks-libev-local@local-config.service`
  23. Verify it is working: `url --proxy socks5://127.0.0.1:1080 https://ifconfig.me`