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

75 lines
1.6 KiB
Markdown
Raw Normal View History

### Structure
```json
{
"type": "shadowtls",
"tag": "st-in",
... // Listen Fields
2023-02-18 11:27:22 +00:00
"version": 3,
2022-10-06 14:51:51 +00:00
"password": "fuck me till the daylight",
"users": [
{
"name": "sekai",
"password": "8JCsPssfgS8tiRwiMlhARg=="
}
],
"handshake": {
"server": "google.com",
"server_port": 443,
... // Dial Fields
},
"handshake_for_server_name": {
"example.com": {
"server": "example.com",
"server_port": 443,
... // Dial Fields
}
}
}
```
### Listen Fields
See [Listen Fields](/configuration/shared/listen) for details.
### Fields
2022-10-06 14:51:51 +00:00
#### version
ShadowTLS protocol version.
| Value | Protocol Version |
|---------------|-----------------------------------------------------------------------------------------|
| `1` (default) | [ShadowTLS v1](https://github.com/ihciah/shadow-tls/blob/master/docs/protocol-en.md#v1) |
| `2` | [ShadowTLS v2](https://github.com/ihciah/shadow-tls/blob/master/docs/protocol-en.md#v2) |
2023-02-18 11:27:22 +00:00
| `3` | [ShadowTLS v3](https://github.com/ihciah/shadow-tls/blob/master/docs/protocol-v3-en.md) |
2022-10-06 14:51:51 +00:00
#### password
ShadowTLS password.
Only available in the ShadowTLS protocol 2.
#### users
ShadowTLS users.
2022-10-06 14:51:51 +00:00
Only available in the ShadowTLS protocol 3.
2022-10-06 14:51:51 +00:00
#### handshake
==Required==
Handshake server address and [Dial options](/configuration/shared/dial).
#### handshake
Handshake server address and [Dial options](/configuration/shared/dial) for specific server name.
Only available in the ShadowTLS protocol 2/3.