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

236 lines
3.2 KiB
Markdown
Raw Normal View History

2022-07-08 09:01:38 +00:00
### Structure
```json
{
"dns": {
"rules": [
{
"inbound": [
"mixed-in"
],
"network": "tcp",
2022-07-27 04:03:07 +00:00
"auth_user": [
2022-07-17 07:11:26 +00:00
"usera",
"userb"
],
2022-07-08 09:01:38 +00:00
"protocol": [
"tls",
"http",
"quic"
],
"domain": [
"test.com"
],
"domain_suffix": [
".cn"
],
"domain_keyword": [
"test"
],
"domain_regex": [
"^stun\\..+"
],
"geosite": [
"cn"
],
"source_geoip": [
"private"
],
"source_ip_cidr": [
"10.0.0.0/24"
],
"source_port": [
12345
],
2022-07-27 04:03:07 +00:00
"source_port_range": [
"1000:2000",
":3000",
"4000:"
],
2022-07-08 09:01:38 +00:00
"port": [
80,
443
],
2022-07-27 04:03:07 +00:00
"port_range": [
"1000:2000",
":3000",
"4000:"
],
"process_name": [
"curl"
],
"package_name": [
"com.termux"
],
"user": [
"sekai"
],
"user_id": [
1000
],
"invert": false,
2022-07-08 09:01:38 +00:00
"outbound": [
"direct"
],
2022-07-27 04:03:07 +00:00
"server": "local",
"disable_cache": false
2022-07-08 09:01:38 +00:00
},
{
"type": "logical",
"mode": "and",
"rules": [],
2022-07-27 04:03:07 +00:00
"server": "local",
"disable_cache": false
2022-07-08 09:01:38 +00:00
}
]
}
}
```
!!! note ""
You can ignore the JSON Array [] tag when the content is only one item
### Default Fields
!!! note ""
The default rule uses the following matching logic:
(`domain` || `domain_suffix` || `domain_keyword` || `domain_regex` || `geosite`) &&
(`source_geoip` || `source_ip_cidr`) &&
`other fields`
#### inbound
Tags of [inbound](../inbound).
#### network
`tcp` or `udp`.
2022-07-17 07:11:26 +00:00
#### user
Username, see each inbound for details.
#### protocol
Sniffed protocol, see [Sniff](/configuration/route/sniff/) for details.
2022-07-08 09:01:38 +00:00
#### domain
Match full domain.
#### domain_suffix
Match domain suffix.
#### domain_keyword
Match domain using keyword.
#### domain_regex
Match domain using regular expression.
#### geosite
Match geosite.
#### source_geoip
Match source geoip.
#### source_ip_cidr
Match source ip cidr.
#### source_port
Match source port.
2022-07-27 04:03:07 +00:00
#### source_port_range
Match source port range.
2022-07-08 09:01:38 +00:00
#### port
Match port.
2022-07-27 04:03:07 +00:00
#### port_range
Match port range.
#### process_name
!!! error ""
Only supported on Linux, Windows, and macOS.
Match process name.
#### package_name
Match android package name.
#### user
!!! error ""
2022-08-09 08:36:17 +00:00
Only supported on Linux.
2022-07-27 04:03:07 +00:00
Match user name.
#### user_id
!!! error ""
Only supported on Linux.
Match user id.
#### invert
Invert match result.
2022-07-08 09:01:38 +00:00
#### outbound
Match outbound.
#### server
2022-07-27 04:03:07 +00:00
==Required==
2022-07-08 09:01:38 +00:00
Tag of the target dns server.
2022-07-27 04:03:07 +00:00
#### disable_cache
Disable cache and save cache in this query.
2022-07-08 09:01:38 +00:00
### Logical Fields
#### type
`logical`
#### mode
`and` or `or`
#### rules
Included default rules.
2022-07-27 04:03:07 +00:00
#### invert
Invert match result.
2022-07-08 09:01:38 +00:00
#### server
==Required==
2022-07-08 09:01:38 +00:00
Tag of the target dns server.
2022-07-27 04:03:07 +00:00
#### disable_cache
Disable cache and save cache in this query.