An open API service indexing awesome lists of open source software.

https://github.com/zk-123/shadowsocks

shadowsocks with java
https://github.com/zk-123/shadowsocks

cipher shadowsocks shadowsocks-client shadowsocks-java shadowsocks-server socks5

Last synced: 2 days ago
JSON representation

shadowsocks with java

Awesome Lists containing this project

README

          

[![Travis](https://img.shields.io/travis/rust-lang/rust.svg)]()
[![Scrutinizer](https://img.shields.io/scrutinizer/g/filp/whoops.svg)]()

# Env
+ JDK1.7+

# shadowsocks-server
usage:
```
java -jar shadowsocks-server.jar -s "0.0.0.0:1080" -p "123456" -m "aes-128-cfb"
```

more :
```
usage: java -jar shadowsocks-server.jar -h
-s,--address server listen address. e.g: ip:port
-p,--password password
-m,--method encrypt method. support method: [camellia-128-cfb, salsa20, chacha20-ietf, camellia-192-cfb, camellia-256-cfb, chacha20,
aes-128-cfb, aes-256-cfb, rc4-md5, aes-192-cfb, aes-192-gcm, aes-256-gcm, aes-128-gcm]
-h usage help
-help usage full help
```
more options with parameter '-help'

# shadowsocks-client-socks5

usage:
```
java -jar shadowsocks-socks.jar -s "127.0.0.1:1088" -p "123456" -m "aes-256-gcm" -c "0.0.0.0:1081"
```

more:
```
usage: java -jar shadowsocks-socks.jar -h
-s,--server_address server connect address. e.g: ip:port
-p,--password server password
-m,--method encrypt method. support method: [camellia-128-cfb, salsa20, chacha20-ietf, camellia-192-cfb, camellia-256-cfb,
chacha20, aes-128-cfb, aes-256-cfb, rc4-md5, aes-192-cfb, aes-192-gcm, aes-256-gcm, aes-128-gcm]
-c,--local_address local expose address. e.g: 0.0.0.0:1080
-h usage help
-help usage full help
```
more options with parameter '-help'

[more info wiki](https://github.com/zk-123/shadowsocks/wiki/%E5%AE%98%E6%96%B9%E5%8D%8F%E8%AE%AE)