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.

57 lines
1.6 KiB

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