mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 15:14:43 -05:00
🐛 Fix null pointer exception when parse ws headers in vless
🔧 Update templates
This commit is contained in:
parent
a2596b1880
commit
acf547f173
@ -130,7 +130,12 @@ func ParseVless(proxy string) (model.Outbound, error) {
|
|||||||
Path: path,
|
Path: path,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
result.VLESSOptions.Transport.WebsocketOptions.Headers["Host"] = host
|
if host != "" {
|
||||||
|
if result.VLESSOptions.Transport.WebsocketOptions.Headers == nil {
|
||||||
|
result.VLESSOptions.Transport.WebsocketOptions.Headers = make(map[string]string)
|
||||||
|
}
|
||||||
|
result.VLESSOptions.Transport.WebsocketOptions.Headers["Host"] = host
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if params.Get("type") == "quic" {
|
if params.Get("type") == "quic" {
|
||||||
|
@ -143,21 +143,25 @@
|
|||||||
"outbound": "dns-out"
|
"outbound": "dns-out"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ip_is_private": true,
|
"rule_set": "geosite-geolocation-!cn",
|
||||||
|
"outbound": "节点选择"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"rule_set": "geosite-geolocation-cn",
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": ["geoip-cn", "geosite-geolocation-cn"],
|
"rule_set": "geoip-cn",
|
||||||
|
"outbound": "direct"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ip_is_private": true,
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-category-ads-all",
|
"rule_set": "geosite-category-ads-all",
|
||||||
"outbound": "Ads"
|
"outbound": "Ads"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"rule_set": "geosite-microsoft",
|
|
||||||
"outbound": "Microsoft"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-bilibili",
|
"rule_set": "geosite-bilibili",
|
||||||
"outbound": "Bilibili"
|
"outbound": "Bilibili"
|
||||||
@ -203,13 +207,6 @@
|
|||||||
"default": "block",
|
"default": "block",
|
||||||
"interrupt_exist_connections": true
|
"interrupt_exist_connections": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Microsoft",
|
|
||||||
"outbounds": ["节点选择", "<all-country-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "selector",
|
"type": "selector",
|
||||||
"tag": "Bilibili",
|
"tag": "Bilibili",
|
@ -1,247 +0,0 @@
|
|||||||
{
|
|
||||||
"log": {
|
|
||||||
"level": "info",
|
|
||||||
"timestamp": true
|
|
||||||
},
|
|
||||||
"dns": {
|
|
||||||
"servers": [
|
|
||||||
{
|
|
||||||
"tag": "google",
|
|
||||||
"address": "tls://8.8.8.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "local",
|
|
||||||
"address": "https://223.5.5.5/dns-query",
|
|
||||||
"detour": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "remote",
|
|
||||||
"address": "fakeip"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"outbound": "any",
|
|
||||||
"server": "local"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"query_type": ["A", "AAAA"],
|
|
||||||
"server": "remote"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"clash_mode": "Direct",
|
|
||||||
"server": "local"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"clash_mode": "Global",
|
|
||||||
"server": "google"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-geolocation-cn",
|
|
||||||
"server": "local"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"fakeip": {
|
|
||||||
"enabled": true,
|
|
||||||
"inet4_range": "198.18.0.0/15",
|
|
||||||
"inet6_range": "fc00::/18"
|
|
||||||
},
|
|
||||||
"independent_cache": true
|
|
||||||
},
|
|
||||||
"route": {
|
|
||||||
"rule_set": [
|
|
||||||
{
|
|
||||||
"tag": "geosite-geolocation-cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-geolocation-!cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-!cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geoip-cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geoip/rule-set/geoip-cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-category-ads-all",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-microsoft",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-microsoft.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-bilibili",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-bilibili.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-bahamut",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-bahamut.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-category-games@cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-games@cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-category-games",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-games.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"type": "logical",
|
|
||||||
"mode": "or",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"protocol": "dns"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"port": 53
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"outbound": "dns-out"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ip_is_private": true,
|
|
||||||
"outbound": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": ["geoip-cn", "geosite-geolocation-cn"],
|
|
||||||
"outbound": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-category-ads-all",
|
|
||||||
"outbound": "Ads"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-microsoft",
|
|
||||||
"outbound": "Microsoft"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-bilibili",
|
|
||||||
"outbound": "Bilibili"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-category-games@cn",
|
|
||||||
"outbound": "Games(中国)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-category-games",
|
|
||||||
"outbound": "Games(全球)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-bahamut",
|
|
||||||
"outbound": "Bahamut"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"final": "节点选择",
|
|
||||||
"auto_detect_interface": true
|
|
||||||
},
|
|
||||||
"inbounds": [
|
|
||||||
{
|
|
||||||
"type": "tun",
|
|
||||||
"inet4_address": "172.19.0.1/30",
|
|
||||||
"inet6_address": "fdfe:dcba:9876::1/126",
|
|
||||||
"auto_route": true,
|
|
||||||
"strict_route": true,
|
|
||||||
"sniff": true,
|
|
||||||
"sniff_override_destination": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"outbounds": [
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "节点选择",
|
|
||||||
"outbounds": ["<all-proxy-tags>", "direct"],
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Ads",
|
|
||||||
"outbounds": ["direct", "block"],
|
|
||||||
"default": "block",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Microsoft",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Bilibili",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "direct",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Games(全球)",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Games(中国)",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "direct",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Bahamut",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "direct",
|
|
||||||
"tag": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "block",
|
|
||||||
"tag": "block"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "dns",
|
|
||||||
"tag": "dns-out"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"experimental": {
|
|
||||||
"clash_api": {
|
|
||||||
"external_controller": "127.0.0.1:9090",
|
|
||||||
"external_ui": "./ui",
|
|
||||||
"external_ui_download_detour": "节点选择"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -143,21 +143,25 @@
|
|||||||
"outbound": "dns-out"
|
"outbound": "dns-out"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ip_is_private": true,
|
"rule_set": "geosite-geolocation-!cn",
|
||||||
|
"outbound": "节点选择"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"rule_set": "geosite-geolocation-cn",
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": ["geoip-cn", "geosite-geolocation-cn"],
|
"rule_set": "geoip-cn",
|
||||||
|
"outbound": "direct"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ip_is_private": true,
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-category-ads-all",
|
"rule_set": "geosite-category-ads-all",
|
||||||
"outbound": "Ads"
|
"outbound": "Ads"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"rule_set": "geosite-microsoft",
|
|
||||||
"outbound": "Microsoft"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-bilibili",
|
"rule_set": "geosite-bilibili",
|
||||||
"outbound": "Bilibili"
|
"outbound": "Bilibili"
|
||||||
@ -203,13 +207,6 @@
|
|||||||
"default": "block",
|
"default": "block",
|
||||||
"interrupt_exist_connections": true
|
"interrupt_exist_connections": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Microsoft",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "selector",
|
"type": "selector",
|
||||||
"tag": "Bilibili",
|
"tag": "Bilibili",
|
@ -129,21 +129,25 @@
|
|||||||
"outbound": "dns-out"
|
"outbound": "dns-out"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ip_is_private": true,
|
"rule_set": "geosite-geolocation-!cn",
|
||||||
|
"outbound": "节点选择"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"rule_set": "geosite-geolocation-cn",
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": ["geoip-cn", "geosite-geolocation-cn"],
|
"rule_set": "geoip-cn",
|
||||||
|
"outbound": "direct"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ip_is_private": true,
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-category-ads-all",
|
"rule_set": "geosite-category-ads-all",
|
||||||
"outbound": "Ads"
|
"outbound": "Ads"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"rule_set": "geosite-microsoft",
|
|
||||||
"outbound": "Microsoft"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-bilibili",
|
"rule_set": "geosite-bilibili",
|
||||||
"outbound": "Bilibili"
|
"outbound": "Bilibili"
|
||||||
@ -189,13 +193,6 @@
|
|||||||
"default": "block",
|
"default": "block",
|
||||||
"interrupt_exist_connections": true
|
"interrupt_exist_connections": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Microsoft",
|
|
||||||
"outbounds": ["节点选择", "<all-country-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "selector",
|
"type": "selector",
|
||||||
"tag": "Bilibili",
|
"tag": "Bilibili",
|
@ -1,233 +0,0 @@
|
|||||||
{
|
|
||||||
"log": {
|
|
||||||
"level": "info",
|
|
||||||
"timestamp": true
|
|
||||||
},
|
|
||||||
"dns": {
|
|
||||||
"servers": [
|
|
||||||
{
|
|
||||||
"tag": "google",
|
|
||||||
"address": "tls://8.8.8.8"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "local",
|
|
||||||
"address": "https://223.5.5.5/dns-query",
|
|
||||||
"detour": "direct"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"outbound": "any",
|
|
||||||
"server": "local"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"clash_mode": "Direct",
|
|
||||||
"server": "local"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"clash_mode": "Global",
|
|
||||||
"server": "google"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-geolocation-cn",
|
|
||||||
"server": "local"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"route": {
|
|
||||||
"rule_set": [
|
|
||||||
{
|
|
||||||
"tag": "geosite-geolocation-cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-geolocation-!cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-!cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geoip-cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geoip/rule-set/geoip-cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-category-ads-all",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-microsoft",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-microsoft.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-bilibili",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-bilibili.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-bahamut",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-bahamut.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-category-games@cn",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-games@cn.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"tag": "geosite-category-games",
|
|
||||||
"type": "remote",
|
|
||||||
"format": "binary",
|
|
||||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-games.srs",
|
|
||||||
"download_detour": "节点选择"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"type": "logical",
|
|
||||||
"mode": "or",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"protocol": "dns"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"port": 53
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"outbound": "dns-out"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ip_is_private": true,
|
|
||||||
"outbound": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": ["geoip-cn", "geosite-geolocation-cn"],
|
|
||||||
"outbound": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-category-ads-all",
|
|
||||||
"outbound": "Ads"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-microsoft",
|
|
||||||
"outbound": "Microsoft"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-bilibili",
|
|
||||||
"outbound": "Bilibili"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-category-games@cn",
|
|
||||||
"outbound": "Games(中国)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-category-games",
|
|
||||||
"outbound": "Games(全球)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"rule_set": "geosite-bahamut",
|
|
||||||
"outbound": "Bahamut"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"final": "节点选择",
|
|
||||||
"auto_detect_interface": true
|
|
||||||
},
|
|
||||||
"inbounds": [
|
|
||||||
{
|
|
||||||
"type": "tun",
|
|
||||||
"inet4_address": "172.19.0.1/30",
|
|
||||||
"inet6_address": "fdfe:dcba:9876::1/126",
|
|
||||||
"auto_route": true,
|
|
||||||
"strict_route": false,
|
|
||||||
"sniff": true,
|
|
||||||
"sniff_override_destination": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"outbounds": [
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "节点选择",
|
|
||||||
"outbounds": ["<all-proxy-tags>", "direct"],
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Ads",
|
|
||||||
"outbounds": ["direct", "block"],
|
|
||||||
"default": "block",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Microsoft",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Bilibili",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "direct",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Games(全球)",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Games(中国)",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "direct",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Bahamut",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "direct",
|
|
||||||
"tag": "direct"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "block",
|
|
||||||
"tag": "block"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "dns",
|
|
||||||
"tag": "dns-out"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"experimental": {
|
|
||||||
"clash_api": {
|
|
||||||
"external_controller": "127.0.0.1:9090",
|
|
||||||
"external_ui": "./ui",
|
|
||||||
"external_ui_download_detour": "节点选择"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -129,21 +129,25 @@
|
|||||||
"outbound": "dns-out"
|
"outbound": "dns-out"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ip_is_private": true,
|
"rule_set": "geosite-geolocation-!cn",
|
||||||
|
"outbound": "节点选择"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"rule_set": "geosite-geolocation-cn",
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": ["geoip-cn", "geosite-geolocation-cn"],
|
"rule_set": "geoip-cn",
|
||||||
|
"outbound": "direct"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ip_is_private": true,
|
||||||
"outbound": "direct"
|
"outbound": "direct"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-category-ads-all",
|
"rule_set": "geosite-category-ads-all",
|
||||||
"outbound": "Ads"
|
"outbound": "Ads"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"rule_set": "geosite-microsoft",
|
|
||||||
"outbound": "Microsoft"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"rule_set": "geosite-bilibili",
|
"rule_set": "geosite-bilibili",
|
||||||
"outbound": "Bilibili"
|
"outbound": "Bilibili"
|
||||||
@ -189,13 +193,6 @@
|
|||||||
"default": "block",
|
"default": "block",
|
||||||
"interrupt_exist_connections": true
|
"interrupt_exist_connections": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "selector",
|
|
||||||
"tag": "Microsoft",
|
|
||||||
"outbounds": ["节点选择", "<all-proxy-tags>", "direct"],
|
|
||||||
"default": "节点选择",
|
|
||||||
"interrupt_exist_connections": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "selector",
|
"type": "selector",
|
||||||
"tag": "Bilibili",
|
"tag": "Bilibili",
|
Loading…
Reference in New Issue
Block a user