sing-box/docs/configuration/dns/index.md

46 lines
723 B
Markdown
Raw Normal View History

2022-08-25 13:08:29 +00:00
# DNS
2022-07-08 09:01:38 +00:00
### Structure
```json
{
"dns": {
"servers": [],
"rules": [],
"final": "",
"strategy": "",
2022-07-08 09:01:38 +00:00
"disable_cache": false,
"disable_expire": false
}
}
```
### Fields
| Key | Format |
|----------|--------------------------------|
| `server` | List of [DNS Server](./server) |
| `rules` | List of [DNS Rule](./rule) |
#### final
Default dns server tag.
The first server will be used if empty.
2022-07-08 09:01:38 +00:00
#### strategy
Default domain strategy for resolving the domain names.
One of `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`.
2022-08-22 04:43:21 +00:00
Take no effect if `server.strategy` is set.
2022-07-08 09:01:38 +00:00
#### disable_cache
Disable dns cache.
#### disable_expire
Disable dns cache expire.