github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/configuration/outbound/shadowsocksr.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "type": "shadowsocksr", 6 "tag": "ssr-out", 7 8 "server": "127.0.0.1", 9 "server_port": 1080, 10 "method": "aes-128-cfb", 11 "password": "8JCsPssfgS8tiRwiMlhARg==", 12 "obfs": "plain", 13 "obfs_param": "", 14 "protocol": "origin", 15 "protocol_param": "", 16 "network": "udp", 17 18 ... // 拨号字段 19 } 20 ``` 21 22 !!! warning "" 23 24 ShadowsocksR 协议已过时且无人维护。 提供此出站仅出于兼容性目的。 25 26 !!! warning "" 27 28 默认安装不包含被 ShadowsocksR,参阅 [安装](/zh/#_2)。 29 30 ### 字段 31 32 #### server 33 34 ==必填== 35 36 服务器地址。 37 38 #### server_port 39 40 ==必填== 41 42 服务器端口。 43 44 #### method 45 46 ==必填== 47 48 加密方法: 49 50 * `aes-128-ctr` 51 * `aes-192-ctr` 52 * `aes-256-ctr` 53 * `aes-128-cfb` 54 * `aes-192-cfb` 55 * `aes-256-cfb` 56 * `rc4-md5` 57 * `chacha20-ietf` 58 * `xchacha20` 59 60 #### password 61 62 ==必填== 63 64 Shadowsocks 密码。 65 66 #### obfs 67 68 ShadowsocksR 混淆。 69 70 * plain 71 * http_simple 72 * http_post 73 * random_head 74 * tls1.2_ticket_auth 75 76 #### obfs_param 77 78 ShadowsocksR 混淆参数。 79 80 #### protocol 81 82 ShadowsocksR 协议。 83 84 * origin 85 * verify_sha1 86 * auth_sha1_v4 87 * auth_aes128_md5 88 * auth_aes128_sha1 89 * auth_chain_a 90 * auth_chain_b 91 92 #### protocol_param 93 94 ShadowsocksR 协议参数。 95 96 #### network 97 98 启用的网络协议 99 100 `tcp` 或 `udp`。 101 102 默认所有。 103 104 ### 拨号字段 105 106 参阅 [拨号字段](/zh/configuration/shared/dial/)。