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.

56 lines
1.4 KiB

12 years ago
12 years ago
12 years ago
11 years ago
11 years ago
11 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
11 years ago
11 years ago
11 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
11 years ago
12 years ago
12 years ago
11 years ago
12 years ago
11 years ago
12 years ago
12 years ago
  1. shadowsocks-libev
  2. =================
  3. [![Build Status](https://secure.travis-ci.org/madeye/gaeproxy.png)](http://travis-ci.org/madeye/shadowsocks-libev)
  4. Intro
  5. -----
  6. [Shadowsocks-libev](http://shadowsocks.org) is a lightweight secured scoks5 proxy for embedded devices
  7. like routers and mobile phones.
  8. It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks) with
  9. only client part ported.
  10. To setup your own server, please refer to
  11. [shadowsocks ports](https://github.com/clowwindy/shadowsocks/wiki/Ports-and-Clients)
  12. for more information.
  13. Features
  14. --------
  15. Shadowsocks-libev is writen in C and only depends on
  16. [libev](http://software.schmorp.de/pkg/libev.html).
  17. When statically linked and packaged for OpenWRT, the total package size is 23KB.
  18. In normal usage, the memory consumption is about 600KB and the CPU utilization is
  19. no more than 5% on a low-end router (Buffalo WHR-G300N V2 with a 400MHz MIPS CPU,
  20. 32MB memory and 4MB flash).
  21. Installation
  22. ------------
  23. Build the binary like this:
  24. ```bash
  25. sudo apt-get install build-essential autoconf libtool libev-dev
  26. ./configure && make
  27. ```
  28. Usage
  29. -----
  30. ```
  31. usage:
  32. ss -s server_host -p server_port -l local_port -k password
  33. [-m encrypt_method] [-f pid_file] [-t timeout] [-c config_file]
  34. options:
  35. encrypt_method: table, rc4
  36. pid_file: valid path to the pid file
  37. timeout: socket timeout in senconds
  38. config_file: json format config file
  39. ```