shadowsocks/README.md

141 lines
4.6 KiB
Markdown
Raw Normal View History

2012-04-20 06:10:49 -07:00
shadowsocks
2012-04-20 22:26:00 +08:00
===========
2014-12-24 16:47:14 +08:00
[![PyPI version]][PyPI]
[![Build Status]][Travis CI]
[![Coverage Status]][Coverage]
2014-06-04 18:04:41 +08:00
2014-08-03 09:40:12 +08:00
A fast tunnel proxy that helps you bypass firewalls.
2012-04-20 22:26:00 +08:00
2014-06-04 18:32:58 +08:00
[中文说明][Chinese Readme]
2013-06-27 02:58:51 +08:00
2014-05-03 08:19:05 +08:00
Install
-------
2012-04-20 22:26:00 +08:00
2014-11-03 18:14:25 +08:00
You'll have a client on your local side, and setup a server on a
2014-06-16 00:52:29 +08:00
remote server.
2014-06-16 01:13:54 +08:00
### Client
* [Windows] / [OS X]
* [Android] / [iOS]
* [OpenWRT]
### Server
2014-06-16 00:52:29 +08:00
2014-05-03 08:19:05 +08:00
#### Debian / Ubuntu:
2014-10-11 12:42:59 +08:00
apt-get install python-pip
2014-06-01 11:22:57 +08:00
pip install shadowsocks
2014-05-03 08:19:05 +08:00
2014-09-06 20:58:56 +08:00
Or simply `apt-get install shadowsocks` if you have [Debian sid] in your
source list.
2014-05-03 08:19:05 +08:00
#### CentOS:
2014-10-11 12:42:59 +08:00
yum install python-setuptools
2014-05-03 08:19:05 +08:00
easy_install pip
2013-06-22 17:30:31 +08:00
pip install shadowsocks
2014-05-03 08:19:05 +08:00
2014-10-08 21:07:05 +08:00
#### Windows:
2014-12-19 14:24:32 +08:00
Download [OpenSSL for Windows] and install. Then install shadowsocks via
2014-10-11 12:42:59 +08:00
easy_install and pip as Linux. If you don't know how to use them, you can
directly download [the package], and use `python shadowsocks/server.py`
instead of `ssserver` command below.
2014-10-08 21:07:05 +08:00
2014-06-16 01:13:54 +08:00
Configuration
-------------
2014-05-03 08:19:05 +08:00
2014-06-16 02:14:49 +08:00
On your server create a config file `/etc/shadowsocks.json`.
2014-05-03 08:19:05 +08:00
Example:
2012-12-30 13:28:51 +08:00
2013-06-22 17:30:31 +08:00
{
"server":"my_server_ip",
"server_port":8388,
2014-05-03 08:19:05 +08:00
"local_address": "127.0.0.1",
2013-06-22 17:30:31 +08:00
"local_port":1080,
2014-05-03 08:19:05 +08:00
"password":"mypassword",
"timeout":300,
"method":"aes-256-cfb",
2014-12-21 14:06:28 +08:00
"fast_open": false
2013-06-22 17:30:31 +08:00
}
2012-04-20 22:26:00 +08:00
2013-09-15 23:20:30 -06:00
Explanation of the fields:
2013-06-22 17:30:31 +08:00
2014-05-03 08:23:47 +08:00
| Name | Explanation |
| ------------- | ----------------------------------------------- |
| server | the address your server listens |
| server_port | server port |
| local_address | the address your local listens |
| local_port | local port |
| password | password used for encryption |
| timeout | in seconds |
| method | default: "aes-256-cfb", see [Encryption] |
2014-06-01 11:22:57 +08:00
| fast_open | use [TCP_FASTOPEN], true / false |
2014-05-17 13:54:28 +08:00
| workers | number of workers, available on Unix/Linux |
2013-05-22 14:14:37 +08:00
2014-12-21 14:06:28 +08:00
On your server:
2013-05-22 14:14:37 +08:00
2014-12-21 14:06:28 +08:00
To run in the foreground:
2012-04-20 22:26:00 +08:00
2014-12-21 14:06:28 +08:00
ssserver -c /etc/shadowsocks.json
2012-04-20 22:26:00 +08:00
2014-12-21 14:06:28 +08:00
To run in the background:
2012-12-12 15:19:51 +08:00
2014-12-21 14:09:07 +08:00
ssserver -c /etc/shadowsocks.json -d start
ssserver -c /etc/shadowsocks.json -d stop
2014-06-16 02:14:49 +08:00
2014-12-21 14:06:28 +08:00
On your client machine, use the same configuration as your server. Check the
README of your client for more information.
2013-06-27 02:58:51 +08:00
2014-12-21 14:06:28 +08:00
Command Line Options
--------------------
2014-06-16 02:29:06 +08:00
2014-12-21 14:06:28 +08:00
Check the options via `-h`.You can use args to override settings from
`config.json`.
2013-06-22 17:30:31 +08:00
sslocal -s server_name -p server_port -l local_port -k password -m bf-cfb
2014-05-17 13:54:28 +08:00
ssserver -p server_port -k password -m bf-cfb --workers 2
2014-12-21 14:06:28 +08:00
ssserver -c /etc/shadowsocks/config.json -d start --pid-file=/tmp/shadowsocks.pid
ssserver -c /etc/shadowsocks/config.json -d stop --pid-file=/tmp/shadowsocks.pid
2013-06-22 17:30:31 +08:00
2014-12-21 14:06:28 +08:00
Documentation
-------------
2012-12-30 14:01:41 +08:00
2014-09-18 09:20:57 +08:00
You can find all the documentation in the wiki:
2014-12-27 23:29:07 +08:00
https://github.com/shadowsocks/shadowsocks/wiki
2012-12-30 14:01:41 +08:00
2013-06-18 18:52:01 +09:00
License
-------
MIT
Bugs and Issues
----------------
2013-06-23 01:32:24 +08:00
2014-06-23 17:12:16 +08:00
* [Troubleshooting]
* [Issue Tracker]
* [Mailing list]
2014-06-01 11:22:57 +08:00
2014-12-27 23:29:07 +08:00
[Android]: https://github.com/shadowsocks/shadowsocks/wiki/Ports-and-Clients#android
[Build Status]: https://img.shields.io/travis/shadowsocks/shadowsocks/master.svg?style=flat
[Chinese Readme]: https://github.com/shadowsocks/shadowsocks/wiki/Shadowsocks-%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8E
2014-12-24 16:47:14 +08:00
[Coverage Status]: http://192.81.132.184/result/shadowsocks
[Coverage]: http://192.81.132.184/job/Shadowsocks/ws/htmlcov/index.html
2014-09-06 20:58:56 +08:00
[Debian sid]: https://packages.debian.org/unstable/python/shadowsocks
2014-10-11 12:42:59 +08:00
[the package]: https://pypi.python.org/pypi/shadowsocks
2014-12-27 23:29:07 +08:00
[Encryption]: https://github.com/shadowsocks/shadowsocks/wiki/Encryption
2014-07-28 00:26:30 +08:00
[iOS]: https://github.com/shadowsocks/shadowsocks-iOS/wiki/Help
2014-12-27 23:29:07 +08:00
[Issue Tracker]: https://github.com/shadowsocks/shadowsocks/issues?state=open
2014-06-23 17:12:16 +08:00
[Mailing list]: http://groups.google.com/group/shadowsocks
2014-12-19 14:24:32 +08:00
[OpenSSL for Windows]: http://slproweb.com/products/Win32OpenSSL.html
2014-12-27 23:29:07 +08:00
[OpenWRT]: https://github.com/shadowsocks/shadowsocks/wiki/Ports-and-Clients#openwrt
2014-07-28 00:26:30 +08:00
[OS X]: https://github.com/shadowsocks/shadowsocks-iOS/wiki/Shadowsocks-for-OSX-Help
2014-06-16 02:29:06 +08:00
[PyPI]: https://pypi.python.org/pypi/shadowsocks
2014-06-21 11:18:33 +08:00
[PyPI version]: https://img.shields.io/pypi/v/shadowsocks.svg?style=flat
2014-12-27 23:29:07 +08:00
[TCP_FASTOPEN]: https://github.com/shadowsocks/shadowsocks/wiki/TCP-Fast-Open
[Travis CI]: https://travis-ci.org/shadowsocks/shadowsocks
[Troubleshooting]: https://github.com/shadowsocks/shadowsocks/wiki/Troubleshooting
[Windows]: https://github.com/shadowsocks/shadowsocks/wiki/Ports-and-Clients#windows