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.

55 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
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
11 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
  7. proxy for embedded devices and low end boxes.
  8. It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks)
  9. created by [@clowwindy](https://github.com/clowwindy).
  10. Features
  11. --------
  12. Shadowsocks-libev is writen in pure C and only depends on
  13. [libev](http://software.schmorp.de/pkg/libev.html).
  14. When statically linked and packaged for OpenWRT, the total package size is 23KB.
  15. In normal usage, the memory consumption is about 600KB and the CPU utilization is
  16. no more than 5% on a low-end router (Buffalo WHR-G300N V2 with a 400MHz MIPS CPU,
  17. 32MB memory and 4MB flash).
  18. Installation
  19. ------------
  20. Build the binary like this:
  21. ```bash
  22. sudo apt-get install build-essential autoconf libtool libev-dev
  23. ./configure && make
  24. ```
  25. Usage
  26. -----
  27. ```
  28. usage:
  29. ss-local -s server_host -p server_port -l local_port -k password
  30. [-m encrypt_method] [-f pid_file] [-t timeout] [-c config_file]
  31. ss-server -s server_host -p server_port -k password
  32. [-m encrypt_method] [-f pid_file] [-t timeout] [-c config_file]
  33. options:
  34. encrypt_method: table, rc4
  35. pid_file: valid path to the pid file
  36. timeout: socket timeout in senconds
  37. config_file: json format config file
  38. ```