2022-07-08 09:01:38 +00:00
|
|
|
### Structure
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"dns": {
|
|
|
|
"servers": [
|
|
|
|
{
|
|
|
|
"tag": "google",
|
|
|
|
"address": "tls://dns.google",
|
|
|
|
"address_resolver": "local",
|
|
|
|
"address_strategy": "prefer_ipv4",
|
2022-08-22 04:43:21 +00:00
|
|
|
"strategy": "ipv4_only",
|
2022-07-08 09:01:38 +00:00
|
|
|
"detour": "direct"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
### Fields
|
|
|
|
|
|
|
|
#### tag
|
|
|
|
|
|
|
|
The tag of the dns server.
|
|
|
|
|
|
|
|
#### address
|
|
|
|
|
2022-07-09 01:26:50 +00:00
|
|
|
==Required==
|
|
|
|
|
2022-07-08 09:01:38 +00:00
|
|
|
The address of the dns server.
|
|
|
|
|
2023-12-14 14:23:52 +00:00
|
|
|
| Protocol | Format |
|
|
|
|
|--------------------------------------|-------------------------------|
|
|
|
|
| `System` | `local` |
|
|
|
|
| `TCP` | `tcp://1.0.0.1` |
|
|
|
|
| `UDP` | `8.8.8.8` `udp://8.8.4.4` |
|
|
|
|
| `TLS` | `tls://dns.google` |
|
|
|
|
| `HTTPS` | `https://1.1.1.1/dns-query` |
|
|
|
|
| `QUIC` | `quic://dns.adguard.com` |
|
|
|
|
| `HTTP3` | `h3://8.8.8.8/dns-query` |
|
|
|
|
| `RCode` | `rcode://refused` |
|
|
|
|
| `DHCP` | `dhcp://auto` or `dhcp://en0` |
|
|
|
|
| [FakeIP](/configuration/dns/fakeip/) | `fakeip` |
|
2022-07-08 09:01:38 +00:00
|
|
|
|
|
|
|
!!! warning ""
|
|
|
|
|
2022-08-24 08:23:21 +00:00
|
|
|
To ensure that system DNS is in effect, rather than Go's built-in default resolver, enable CGO at compile time.
|
2022-07-08 09:01:38 +00:00
|
|
|
|
2022-07-27 04:03:07 +00:00
|
|
|
!!! warning ""
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
QUIC and HTTP3 transport is not included by default, see [Installation](./#installation).
|
2022-07-27 04:03:07 +00:00
|
|
|
|
|
|
|
!!! info ""
|
|
|
|
|
|
|
|
the RCode transport is often used to block queries. Use with rules and the `disable_cache` rule option.
|
|
|
|
|
2023-02-08 08:28:52 +00:00
|
|
|
!!! warning ""
|
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
DHCP transport is not included by default, see [Installation](./#installation).
|
2023-02-08 08:28:52 +00:00
|
|
|
|
2022-07-27 04:03:07 +00:00
|
|
|
| RCode | Description |
|
|
|
|
|-------------------|-----------------------|
|
|
|
|
| `success` | `No error` |
|
|
|
|
| `format_error` | `Format error` |
|
|
|
|
| `server_failure` | `Server failure` |
|
|
|
|
| `name_error` | `Non-existent domain` |
|
|
|
|
| `not_implemented` | `Not implemented` |
|
2022-08-24 08:23:21 +00:00
|
|
|
| `refused` | `Query refused` |
|
2022-07-27 04:03:07 +00:00
|
|
|
|
2022-07-08 09:01:38 +00:00
|
|
|
#### address_resolver
|
|
|
|
|
2022-07-09 01:26:50 +00:00
|
|
|
==Required if address contains domain==
|
|
|
|
|
2022-07-08 09:01:38 +00:00
|
|
|
Tag of a another server to resolve the domain name in the address.
|
|
|
|
|
|
|
|
#### address_strategy
|
|
|
|
|
|
|
|
The domain strategy for resolving the domain name in the address.
|
|
|
|
|
|
|
|
One of `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`.
|
|
|
|
|
2022-07-08 10:48:43 +00:00
|
|
|
`dns.strategy` will be used if empty.
|
2022-07-08 09:01:38 +00:00
|
|
|
|
2022-08-22 04:43:21 +00:00
|
|
|
#### strategy
|
|
|
|
|
|
|
|
Default domain strategy for resolving the domain names.
|
|
|
|
|
|
|
|
One of `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`.
|
|
|
|
|
|
|
|
Take no effect if override by other settings.
|
|
|
|
|
2022-07-08 09:01:38 +00:00
|
|
|
#### detour
|
|
|
|
|
|
|
|
Tag of an outbound for connecting to the dns server.
|
|
|
|
|
2023-04-25 21:34:13 +00:00
|
|
|
Default outbound will be used if empty.
|