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
- Host: GitHub
- URL: https://github.com/zk-123/shadowsocks
- Owner: zk-123
- Created: 2018-08-29T08:55:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-17T01:44:00.000Z (about 4 years ago)
- Last Synced: 2023-03-04T09:38:20.785Z (over 3 years ago)
- Topics: cipher, shadowsocks, shadowsocks-client, shadowsocks-java, shadowsocks-server, socks5
- Language: Java
- Homepage:
- Size: 238 KB
- Stars: 27
- Watchers: 6
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-java - Shadowsocks Server
README
[]()
[]()
# 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)