github.com/sagernet/sing-box@v1.9.0-rc.20/docs/configuration/inbound/shadowtls.zh.md (about)

     1  ### 结构
     2  
     3  ```json
     4  {
     5    "type": "shadowtls",
     6    "tag": "st-in",
     7  
     8    ... // 监听字段
     9  
    10    "version": 3,
    11    "password": "fuck me till the daylight",
    12    "users": [
    13      {
    14        "name": "sekai",
    15        "password": "8JCsPssfgS8tiRwiMlhARg=="
    16      }
    17    ],
    18    "handshake": {
    19      "server": "google.com",
    20      "server_port": 443,
    21  
    22      ... // 拨号字段
    23    },
    24    "handshake_for_server_name": {
    25      "example.com": {
    26        "server": "example.com",
    27        "server_port": 443,
    28        
    29        ... // 拨号字段
    30      }
    31    },
    32    "strict_mode": false
    33  }
    34  ```
    35  
    36  ### 监听字段
    37  
    38  参阅 [监听字段](/zh/configuration/shared/listen/)。
    39  
    40  ### 字段
    41  
    42  #### version
    43  
    44  ShadowTLS 协议版本。
    45  
    46  | 值             | 协议版本                                                                                    |
    47  |---------------|-----------------------------------------------------------------------------------------|
    48  | `1` (default) | [ShadowTLS v1](https://github.com/ihciah/shadow-tls/blob/master/docs/protocol-en.md#v1) |
    49  | `2`           | [ShadowTLS v2](https://github.com/ihciah/shadow-tls/blob/master/docs/protocol-en.md#v2) |
    50  | `3`           | [ShadowTLS v3](https://github.com/ihciah/shadow-tls/blob/master/docs/protocol-v3-en.md) |
    51  
    52  #### password
    53  
    54  ShadowTLS 密码。
    55  
    56  仅在 ShadowTLS 协议版本 2 中可用。
    57  
    58  #### users
    59  
    60  ShadowTLS 用户。
    61  
    62  仅在 ShadowTLS 协议版本 3 中可用。
    63  
    64  #### handshake
    65  
    66  ==必填==
    67  
    68  握手服务器地址和 [拨号参数](/zh/configuration/shared/dial/)。
    69  
    70  #### handshake_for_server_name
    71  
    72  ==必填==
    73  
    74  对于特定服务器名称的握手服务器地址和 [拨号参数](/zh/configuration/shared/dial/)。
    75  
    76  仅在 ShadowTLS 协议版本 2/3 中可用。
    77  
    78  #### strict_mode
    79  
    80  ShadowTLS 严格模式。
    81  
    82  仅在 ShadowTLS 协议版本 3 中可用。