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.

33 lines
811 B

12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
  1. shadowsocks-libev
  2. =================
  3. shadowsocks-libev is a lightweight obfuscated scoks5 proxy.
  4. It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks).
  5. Only the client is ported. Please use [shadowsocks-nodejs](https://github.com/clowwindy/shadowsocks-nodejs)
  6. to setup your server.
  7. installation
  8. ------------
  9. Build the binary like this:
  10. ```bash
  11. sudo apt-get install build-essential autoconf libtool libev-dev libssl-dev
  12. automake --add-missing
  13. autoreconf
  14. ./configure && make
  15. ```
  16. usage
  17. -----
  18. ```
  19. usage: ss -s server_host -p server_port -l local_port
  20. -k password [-m encrypt_method] [-f pid_file]
  21. info:
  22. -m: accept two encrypt methods, "table" or "rc4"
  23. -f: run in backgroud, with a valid path to the pid_file
  24. ```