github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/configuration/shared/dial.zh.md (about) 1 ### 结构 2 3 ```json 4 { 5 "detour": "upstream-out", 6 "bind_interface": "en0", 7 "inet4_bind_address": "0.0.0.0", 8 "inet6_bind_address": "::", 9 "routing_mark": 1234, 10 "reuse_addr": false, 11 "connect_timeout": "5s", 12 "tcp_fast_open": false, 13 "tcp_multi_path": false, 14 "udp_fragment": false, 15 "domain_strategy": "prefer_ipv6", 16 "fallback_delay": "300ms" 17 } 18 ``` 19 20 ### 字段 21 22 | 字段 | 可用上下文 | 23 |------------------------------------------------------------------------------------------------------------------------------------------|--------------| 24 | `bind_interface` /`*bind_address` /`routing_mark` /`reuse_addr` / `tcp_fast_open` / `tcp_mutli_path` / `udp_fragment` /`connect_timeout` | `detour` 未设置 | 25 26 27 #### detour 28 29 上游出站的标签。 30 31 启用时,其他拨号字段将被忽略。 32 33 #### bind_interface 34 35 要绑定到的网络接口。 36 37 #### inet4_bind_address 38 39 要绑定的 IPv4 地址。 40 41 #### inet6_bind_address 42 43 要绑定的 IPv6 地址。 44 45 #### routing_mark 46 47 !!! error "" 48 49 仅支持 Linux。 50 51 设置 netfilter 路由标记。 52 53 #### reuse_addr 54 55 重用监听地址。 56 57 #### tcp_fast_open 58 59 启用 TCP Fast Open。 60 61 #### tcp_multi_path 62 63 !!! warning "" 64 65 需要 Go 1.21。 66 67 启用 TCP Multi Path。 68 69 #### udp_fragment 70 71 启用 UDP 分段。 72 73 #### connect_timeout 74 75 连接超时,采用 golang 的 Duration 格式。 76 77 持续时间字符串是一个可能有符号的序列十进制数,每个都有可选的分数和单位后缀, 例如 "300ms"、"-1.5h" 或 "2h45m"。 78 有效时间单位为 "ns"、"us"(或 "µs")、"ms"、"s"、"m"、"h"。 79 80 #### domain_strategy 81 82 可选值:`prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`。 83 84 如果设置,域名将在请求发出之前解析为 IP。 85 86 默认使用 `dns.strategy`。 87 88 #### fallback_delay 89 90 在生成 RFC 6555 快速回退连接之前等待的时间长度。 91 也就是说,是在假设之前等待 IPv6 成功的时间量如果设置了 "prefer_ipv4",则 IPv6 配置错误并回退到 IPv4。 92 如果为零,则使用 300 毫秒的默认延迟。 93 94 仅当 `domain_strategy` 为 `prefer_ipv4` 或 `prefer_ipv6` 时生效。