"routing": {
"domainStrategy": "IPIfNonMatch",
"rules": [
{//连接家里局域网的,走代理,可删除
"type": "field",
"ip": [
"192.168.1.0/24"
],
"outboundTag": "aaa"
},
{//直连中国域名
"type": "field",
"outboundTag": "direct",
"domain": [
"geosite:cn"
]
},
{//其它的中国IP和私有IP都直连
"type": "field",
"outboundTag": "direct",
"ip": [
"geoip:cn",
"geoip:private"
]
},
// TODO 可以增加更多配置
{//直接连接到世界的互联网
"type": "field",
// "balancerTag": "blancerxxx",
"outboundTag": "aaa",
"network": "tcp,udp"
}
],
"balancers": [//可配置负载均衡
{
"tag": "blancerxxx",
"selector": [
"aaa",
"bbb"
],
"strategy": {
"type": "random"
}
}
]
}