mirror of https://github.com/2dust/v2rayN
Updated 自定义路由规则 (markdown)
parent
deeb82a393
commit
e506eb8316
30
自定义路由规则.md
30
自定义路由规则.md
|
@ -1,12 +1,28 @@
|
|||
#### 一个数组,数组中每一项是一个规则
|
||||
```
|
||||
[{
|
||||
"domain": ["baidu.com", "qq.com", "geosite:cn"],
|
||||
"ip": ["0.0.0.0/8", "10.0.0.0/8", "fc00::/7", "fe80::/10", "geoip:cn"],
|
||||
"port": "53,443,1000-2000",
|
||||
"protocol": ["http", "tls", "bittorrent"],
|
||||
"outboundTag": "direct"
|
||||
}]
|
||||
[
|
||||
{
|
||||
"domain": [
|
||||
"baidu.com",
|
||||
"qq.com",
|
||||
"geosite:cn"
|
||||
],
|
||||
"ip": [
|
||||
"0.0.0.0/8",
|
||||
"10.0.0.0/8",
|
||||
"fc00::/7",
|
||||
"fe80::/10",
|
||||
"geoip:cn"
|
||||
],
|
||||
"port": "53,443,1000-2000",
|
||||
"protocol": [
|
||||
"http",
|
||||
"tls",
|
||||
"bittorrent"
|
||||
],
|
||||
"outboundTag": "direct"
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
## 详细说明请看
|
||||
|
|
Loading…
Reference in New Issue