mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
280 lines
3.9 KiB
Markdown
280 lines
3.9 KiB
Markdown
### Structure
|
|
|
|
```json
|
|
{
|
|
"route": {
|
|
"rules": [
|
|
{
|
|
"inbound": [
|
|
"mixed-in"
|
|
],
|
|
"ip_version": 6,
|
|
"network": [
|
|
"tcp"
|
|
],
|
|
"auth_user": [
|
|
"usera",
|
|
"userb"
|
|
],
|
|
"protocol": [
|
|
"tls",
|
|
"http",
|
|
"quic"
|
|
],
|
|
"domain": [
|
|
"test.com"
|
|
],
|
|
"domain_suffix": [
|
|
".cn"
|
|
],
|
|
"domain_keyword": [
|
|
"test"
|
|
],
|
|
"domain_regex": [
|
|
"^stun\\..+"
|
|
],
|
|
"geosite": [
|
|
"cn"
|
|
],
|
|
"source_geoip": [
|
|
"private"
|
|
],
|
|
"geoip": [
|
|
"cn"
|
|
],
|
|
"source_ip_cidr": [
|
|
"10.0.0.0/24",
|
|
"192.168.0.1"
|
|
],
|
|
"ip_cidr": [
|
|
"10.0.0.0/24",
|
|
"192.168.0.1"
|
|
],
|
|
"source_port": [
|
|
12345
|
|
],
|
|
"source_port_range": [
|
|
"1000:2000",
|
|
":3000",
|
|
"4000:"
|
|
],
|
|
"port": [
|
|
80,
|
|
443
|
|
],
|
|
"port_range": [
|
|
"1000:2000",
|
|
":3000",
|
|
"4000:"
|
|
],
|
|
"process_name": [
|
|
"curl"
|
|
],
|
|
"process_path": [
|
|
"/usr/bin/curl"
|
|
],
|
|
"package_name": [
|
|
"com.termux"
|
|
],
|
|
"user": [
|
|
"sekai"
|
|
],
|
|
"user_id": [
|
|
1000
|
|
],
|
|
"clash_mode": "direct",
|
|
"wifi_ssid": [
|
|
"My WIFI"
|
|
],
|
|
"wifi_bssid": [
|
|
"00:00:00:00:00:00"
|
|
],
|
|
"invert": false,
|
|
"outbound": "direct"
|
|
},
|
|
{
|
|
"type": "logical",
|
|
"mode": "and",
|
|
"rules": [],
|
|
"invert": false,
|
|
"outbound": "direct"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
```
|
|
|
|
!!! 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` || `geoip` || `ip_cidr`) &&
|
|
(`port` || `port_range`) &&
|
|
(`source_geoip` || `source_ip_cidr`) &&
|
|
(`source_port` || `source_port_range`) &&
|
|
`other fields`
|
|
|
|
#### inbound
|
|
|
|
Tags of [Inbound](/configuration/inbound/).
|
|
|
|
#### ip_version
|
|
|
|
4 or 6.
|
|
|
|
Not limited if empty.
|
|
|
|
#### auth_user
|
|
|
|
Username, see each inbound for details.
|
|
|
|
#### protocol
|
|
|
|
Sniffed protocol, see [Sniff](/configuration/route/sniff/) for details.
|
|
|
|
#### network
|
|
|
|
`tcp` or `udp`.
|
|
|
|
#### 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.
|
|
|
|
#### geoip
|
|
|
|
Match geoip.
|
|
|
|
#### source_ip_cidr
|
|
|
|
Match source ip cidr.
|
|
|
|
#### ip_cidr
|
|
|
|
Match ip cidr.
|
|
|
|
#### source_port
|
|
|
|
Match source port.
|
|
|
|
#### source_port_range
|
|
|
|
Match source port range.
|
|
|
|
#### port
|
|
|
|
Match port.
|
|
|
|
#### port_range
|
|
|
|
Match port range.
|
|
|
|
#### process_name
|
|
|
|
!!! quote ""
|
|
|
|
Only supported on Linux, Windows, and macOS.
|
|
|
|
Match process name.
|
|
|
|
#### process_path
|
|
|
|
!!! quote ""
|
|
|
|
Only supported on Linux, Windows, and macOS.
|
|
|
|
Match process path.
|
|
|
|
#### package_name
|
|
|
|
Match android package name.
|
|
|
|
#### user
|
|
|
|
!!! quote ""
|
|
|
|
Only supported on Linux.
|
|
|
|
Match user name.
|
|
|
|
#### user_id
|
|
|
|
!!! quote ""
|
|
|
|
Only supported on Linux.
|
|
|
|
Match user id.
|
|
|
|
#### clash_mode
|
|
|
|
Match Clash mode.
|
|
|
|
#### wifi_ssid
|
|
|
|
!!! quote ""
|
|
|
|
Only supported in graphical clients on Android and iOS.
|
|
|
|
Match WiFi SSID.
|
|
|
|
#### wifi_bssid
|
|
|
|
!!! quote ""
|
|
|
|
Only supported in graphical clients on Android and iOS.
|
|
|
|
Match WiFi BSSID.
|
|
|
|
#### invert
|
|
|
|
Invert match result.
|
|
|
|
#### outbound
|
|
|
|
==Required==
|
|
|
|
Tag of the target outbound.
|
|
|
|
### Logical Fields
|
|
|
|
#### type
|
|
|
|
`logical`
|
|
|
|
#### mode
|
|
|
|
==Required==
|
|
|
|
`and` or `or`
|
|
|
|
#### rules
|
|
|
|
==Required==
|
|
|
|
Included default rules.
|