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

     1  ### 结构
     2  
     3  ```json
     4  {
     5    "type": "shadowsocks",
     6    "tag": "ss-out",
     7    
     8    "server": "127.0.0.1",
     9    "server_port": 1080,
    10    "method": "2022-blake3-aes-128-gcm",
    11    "password": "8JCsPssfgS8tiRwiMlhARg==",
    12    "plugin": "",
    13    "plugin_opts": "",
    14    "network": "udp",
    15    "udp_over_tcp": false | {},
    16    "multiplex": {},
    17  
    18    ... // 拨号字段
    19  }
    20  ```
    21  
    22  ### 字段
    23  
    24  #### server
    25  
    26  ==必填==
    27  
    28  服务器地址。
    29  
    30  #### server_port
    31  
    32  ==必填==
    33  
    34  服务器端口。
    35  
    36  #### method
    37  
    38  ==必填==
    39  
    40  加密方法:
    41  
    42  * `2022-blake3-aes-128-gcm`
    43  * `2022-blake3-aes-256-gcm`
    44  * `2022-blake3-chacha20-poly1305`
    45  * `none`
    46  * `aes-128-gcm`
    47  * `aes-192-gcm`
    48  * `aes-256-gcm`
    49  * `chacha20-ietf-poly1305`
    50  * `xchacha20-ietf-poly1305`
    51  
    52  旧加密方法:
    53  
    54  * `aes-128-ctr`
    55  * `aes-192-ctr`
    56  * `aes-256-ctr`
    57  * `aes-128-cfb`
    58  * `aes-192-cfb`
    59  * `aes-256-cfb`
    60  * `rc4-md5`
    61  * `chacha20-ietf`
    62  * `xchacha20`
    63  
    64  #### password
    65  
    66  ==必填==
    67  
    68  Shadowsocks 密码。
    69  
    70  #### plugin
    71  
    72  Shadowsocks SIP003 插件,由内部实现。
    73  
    74  仅支持 `obfs-local` 和 `v2ray-plugin`。
    75  
    76  #### plugin_opts
    77  
    78  Shadowsocks SIP003 插件参数。
    79  
    80  #### network
    81  
    82  启用的网络协议
    83  
    84  `tcp` 或 `udp`。
    85  
    86  默认所有。
    87  
    88  #### udp_over_tcp
    89  
    90  UDP over TCP 配置。
    91  
    92  参阅 [UDP Over TCP](/zh/configuration/shared/udp-over-tcp/)。
    93  
    94  与 `multiplex` 冲突。
    95  
    96  #### multiplex
    97  
    98  参阅 [多路复用](/zh/configuration/shared/multiplex#outbound)。
    99  
   100  ### 拨号字段
   101  
   102  参阅 [拨号字段](/zh/configuration/shared/dial/)。