We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
targetStrategy
1 parent 8fbb377 commit b129878Copy full SHA for b129878
docs/config/outbound.md
@@ -23,7 +23,8 @@
23
"tag": "another-outbound-tag",
24
"transportLayer": false
25
},
26
- "mux": {}
+ "mux": {},
27
+ "targetStrategy": "AsIs"
28
}
29
]
30
@@ -72,6 +73,16 @@
72
73
74
Mux 相关的具体配置。
75
76
+> `targetStrategy`: "AsIs" | "UseIP" | "UseIPv6v4" | "UseIPv6" | "UseIPv4v6" | "UseIPv4" | "ForceIP" | "ForceIPv6v4" | "ForceIPv6" | "ForceIPv4v6" | "ForceIPv4"
77
+
78
+如果此出站尝试发送一个域名请求,控制其是否被解析/如何解析为 IP 并发送。
79
80
+默认值为 `AsIs` 即保持原样发送到远端服务器。所有参数含义均约等于 [sockopt](./transport.md#sockoptobject) 中的 `domainStrategy`。
81
82
+::: tip
83
+这里控制的是**被代理的请求**,如果出站代理服务器的地址是域名,并需要为这个域名本身选择解析策略,则应配置 [sockopt](./transport.md#sockoptobject) 中的 `domainStrategy`。
84
+:::
85
86
### ProxySettingsObject
87
88
```json
0 commit comments