mirror of
https://github.com/XTLS/Xray-docs-next.git
synced 2025-02-22 01:13:14 +03:00
Update queryStrategy parameter explanation [ENG] (#439)
This commit is contained in:
parent
bf3aa66cd2
commit
9516b07a3c
@ -59,6 +59,22 @@ If the domain name to be queried:
|
|||||||
"skipFallback": false,
|
"skipFallback": false,
|
||||||
"clientIP": "1.2.3.4"
|
"clientIP": "1.2.3.4"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"address": "https://1.1.1.1/dns-query",
|
||||||
|
"domains": [
|
||||||
|
"geosite:netflix"
|
||||||
|
],
|
||||||
|
"skipFallback": true,
|
||||||
|
"queryStrategy": "UseIPv4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"address": "https://1.1.1.1/dns-query",
|
||||||
|
"domains": [
|
||||||
|
"geosite:openai"
|
||||||
|
],
|
||||||
|
"skipFallback": true,
|
||||||
|
"queryStrategy": "UseIPv6"
|
||||||
|
},
|
||||||
"localhost"
|
"localhost"
|
||||||
],
|
],
|
||||||
"clientIp": "1.2.3.4",
|
"clientIp": "1.2.3.4",
|
||||||
@ -135,6 +151,55 @@ You can specify `clientIp` for all DNS servers in [DnsObject](#dnsobject), or sp
|
|||||||
|
|
||||||
`UseIPv4` only queries A records; `UseIPv6` only queries AAAA records. The default value is `UseIP`, which queries both A and AAAA records.
|
`UseIPv4` only queries A records; `UseIPv6` only queries AAAA records. The default value is `UseIP`, which queries both A and AAAA records.
|
||||||
|
|
||||||
|
Xray-core v1.8.6 New feature: `queryStrategy` can be set separately for each `DNS` server.
|
||||||
|
|
||||||
|
```jsonc
|
||||||
|
"dns": {
|
||||||
|
"servers": [
|
||||||
|
"https://1.1.1.1/dns-query",
|
||||||
|
{
|
||||||
|
"address": "https://1.1.1.1/dns-query",
|
||||||
|
"domains": [
|
||||||
|
"geosite:netflix"
|
||||||
|
],
|
||||||
|
"skipFallback": true,
|
||||||
|
"queryStrategy": "UseIPv4" // geosite:netflix's domain name uses "UseIPv4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"address": "https://1.1.1.1/dns-query",
|
||||||
|
"domains": [
|
||||||
|
"geosite:openai"
|
||||||
|
],
|
||||||
|
"skipFallback": true,
|
||||||
|
"queryStrategy": "UseIPv6" // The domain name geosite:openai uses "UseIPv6".
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"queryStrategy": "UseIP" // Global use of "UseIP"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
**NOTE:**<br>
|
||||||
|
When the `"queryStrategy"` value in the child item conflicts with the global `"queryStrategy"` value, the query for the child item will respond null.
|
||||||
|
|
||||||
|
```jsonc
|
||||||
|
"dns": {
|
||||||
|
"servers": [
|
||||||
|
"https://1.1.1.1/dns-query",
|
||||||
|
{
|
||||||
|
"address": "https://8.8.8.8/dns-query",
|
||||||
|
"domains": [
|
||||||
|
"geosite:netflix"
|
||||||
|
],
|
||||||
|
"skipFallback": true,
|
||||||
|
"queryStrategy": "UseIPv6" // "UseIPv6" conflicts with "UseIPv4".
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"queryStrategy": "UseIPv4"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Subterm geosite:netflix query gets null response due to conflicting `"queryStrategy"` values. geosite:netflix domain is queried by global DNS `https://1.1.1.1/dns-query` and gets A record.
|
||||||
|
|
||||||
> `disableCache`: true | false
|
> `disableCache`: true | false
|
||||||
|
|
||||||
`true` disables DNS caching, default is `false` which means caching is not disabled.
|
`true` disables DNS caching, default is `false` which means caching is not disabled.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user