sing-box/docs/configuration/inbound/shadowsocks.md

92 lines
1.9 KiB
Markdown
Raw Normal View History

2022-07-08 10:10:39 +00:00
### Structure
```json
{
2022-08-31 04:50:26 +00:00
"type": "shadowsocks",
"tag": "ss-in",
... // Listen Fields
"method": "2022-blake3-aes-128-gcm",
"password": "8JCsPssfgS8tiRwiMlhARg==",
"multiplex": {}
2022-07-08 10:10:39 +00:00
}
```
2022-08-23 15:15:56 +00:00
### Multi-User Structure
```json
{
2022-08-31 04:50:26 +00:00
"method": "2022-blake3-aes-128-gcm",
"password": "8JCsPssfgS8tiRwiMlhARg==",
"users": [
2022-08-23 15:15:56 +00:00
{
2022-08-31 04:50:26 +00:00
"name": "sekai",
"password": "PCD2Z4o12bKUoFa3cC97Hw=="
2022-08-23 15:15:56 +00:00
}
],
"multiplex": {}
2022-08-23 15:15:56 +00:00
}
```
### Relay Structure
```json
{
2022-08-31 04:50:26 +00:00
"type": "shadowsocks",
"method": "2022-blake3-aes-128-gcm",
"password": "8JCsPssfgS8tiRwiMlhARg==",
"destinations": [
2022-08-23 15:15:56 +00:00
{
2022-08-31 04:50:26 +00:00
"name": "test",
"server": "example.com",
"server_port": 8080,
"password": "PCD2Z4o12bKUoFa3cC97Hw=="
2022-08-23 15:15:56 +00:00
}
],
"multiplex": {}
2022-08-23 15:15:56 +00:00
}
```
2022-08-31 04:50:26 +00:00
### Listen Fields
2023-12-14 14:23:52 +00:00
See [Listen Fields](/configuration/shared/listen/) for details.
2022-08-31 04:50:26 +00:00
### Fields
2022-08-23 15:15:56 +00:00
#### network
Listen network, one of `tcp` `udp`.
Both if empty.
#### method
==Required==
| Method | Key Length |
|-------------------------------|------------|
| 2022-blake3-aes-128-gcm | 16 |
| 2022-blake3-aes-256-gcm | 32 |
| 2022-blake3-chacha20-poly1305 | 32 |
| none | / |
| aes-128-gcm | / |
| aes-192-gcm | / |
| aes-256-gcm | / |
| chacha20-ietf-poly1305 | / |
| xchacha20-ietf-poly1305 | / |
#### password
==Required==
2023-03-05 02:50:51 +00:00
| Method | Password Format |
|---------------|------------------------------------------------|
| none | / |
| 2022 methods | `sing-box generate rand --base64 <Key Length>` |
| other methods | any string |
#### multiplex
See [Multiplex](/configuration/shared/multiplex#inbound) for details.