mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 10:34:42 -05:00
🐛 Fix vless reality missing utls
This commit is contained in:
parent
8976e1d1ad
commit
c402431bb3
@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
sing-box merge -C ./templates/windows ./templates/example-windows.json
|
||||
sing-box merge -C ./templates/linux ./templates/example-linux.json
|
||||
sing-box merge -C ./templates/android ./templates/example-android.json
|
||||
|
@ -96,6 +96,10 @@ func ParseVless(proxy string) (model.Outbound, error) {
|
||||
PublicKey: pbk,
|
||||
ShortID: sid,
|
||||
},
|
||||
UTLS: &option.OutboundUTLSOptions{
|
||||
Enabled: true,
|
||||
Fingerprint: fp,
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
60
templates/android/dns.json
Normal file
60
templates/android/dns.json
Normal file
@ -0,0 +1,60 @@
|
||||
{
|
||||
"dns": {
|
||||
"servers": [
|
||||
{
|
||||
"tag": "google",
|
||||
"address": "https://8.8.8.8/dns-query",
|
||||
"detour": "default"
|
||||
},
|
||||
{
|
||||
"tag": "local",
|
||||
"address": "h3://223.5.5.5/dns-query",
|
||||
"detour": "direct"
|
||||
},
|
||||
{
|
||||
"tag": "refused",
|
||||
"address": "rcode://refused"
|
||||
}
|
||||
],
|
||||
"rules": [
|
||||
{
|
||||
"rule_set": "geosite-category-ads-all",
|
||||
"server": "refused"
|
||||
},
|
||||
{
|
||||
"outbound": "any",
|
||||
"server": "local"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Direct",
|
||||
"server": "local"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Global",
|
||||
"server": "google"
|
||||
},
|
||||
{
|
||||
"rule_set": "geosite-geolocation-cn",
|
||||
"server": "local"
|
||||
},
|
||||
{
|
||||
"type": "logical",
|
||||
"mode": "and",
|
||||
"rules": [
|
||||
{
|
||||
"rule_set": "geosite-geolocation-!cn",
|
||||
"invert": true
|
||||
},
|
||||
{
|
||||
"rule_set": "geoip-cn"
|
||||
}
|
||||
],
|
||||
"server": "google",
|
||||
"client_subnet": "114.114.114.114/24"
|
||||
}
|
||||
],
|
||||
"final": "google",
|
||||
"disable_cache": false,
|
||||
"disable_expire": false
|
||||
}
|
||||
}
|
13
templates/android/experimental.json
Normal file
13
templates/android/experimental.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"experimental": {
|
||||
"cache_file": {
|
||||
"enabled": true
|
||||
},
|
||||
"clash_api": {
|
||||
"external_controller": "127.0.0.1:9090",
|
||||
"external_ui": "./ui",
|
||||
"external_ui_download_detour": "default",
|
||||
"default_mode": "Enhanced"
|
||||
}
|
||||
}
|
||||
}
|
12
templates/android/inbounds.json
Normal file
12
templates/android/inbounds.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "tun",
|
||||
"auto_route": true,
|
||||
"strict_route": true,
|
||||
"sniff": true,
|
||||
"address": ["172.16.0.1/30", "fdfe:dcba:9876::1/126"],
|
||||
"exclude_interface": ["tailscale0"]
|
||||
}
|
||||
]
|
||||
}
|
6
templates/android/log.json
Normal file
6
templates/android/log.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"log": {
|
||||
"level": "info",
|
||||
"timestamp": true
|
||||
}
|
||||
}
|
8
templates/android/ntp.json
Normal file
8
templates/android/ntp.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"ntp": {
|
||||
"enabled": true,
|
||||
"server": "ntp.aliyun.com",
|
||||
"server_port": 123,
|
||||
"interval": "30m"
|
||||
}
|
||||
}
|
21
templates/android/outbounds.json
Normal file
21
templates/android/outbounds.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"outbounds": [
|
||||
{
|
||||
"outbounds": ["<all-proxy-tags>", "direct"],
|
||||
"tag": "default",
|
||||
"type": "selector"
|
||||
},
|
||||
{
|
||||
"tag": "direct",
|
||||
"type": "direct"
|
||||
},
|
||||
{
|
||||
"tag": "block",
|
||||
"type": "block"
|
||||
},
|
||||
{
|
||||
"tag": "dns",
|
||||
"type": "dns"
|
||||
}
|
||||
]
|
||||
}
|
53
templates/android/route.json
Normal file
53
templates/android/route.json
Normal file
@ -0,0 +1,53 @@
|
||||
{
|
||||
"route": {
|
||||
"rules": [
|
||||
{
|
||||
"type": "logical",
|
||||
"mode": "or",
|
||||
"rules": [
|
||||
{
|
||||
"protocol": "dns"
|
||||
},
|
||||
{
|
||||
"port": 53
|
||||
}
|
||||
],
|
||||
"outbound": "dns"
|
||||
},
|
||||
{
|
||||
"ip_is_private": true,
|
||||
"outbound": "direct"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Direct",
|
||||
"outbound": "direct"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Global",
|
||||
"outbound": "default"
|
||||
},
|
||||
{
|
||||
"rule_set": "geosite-google",
|
||||
"outbound": "default"
|
||||
},
|
||||
{
|
||||
"type": "logical",
|
||||
"mode": "or",
|
||||
"rules": [
|
||||
{
|
||||
"rule_set": [
|
||||
"geoip-cn",
|
||||
"geosite-geolocation-cn",
|
||||
"geosite-cn",
|
||||
"geosite-category-games@cn",
|
||||
"geosite-steam@cn"
|
||||
]
|
||||
}
|
||||
],
|
||||
"outbound": "direct"
|
||||
}
|
||||
],
|
||||
"final": "default",
|
||||
"auto_detect_interface": true
|
||||
}
|
||||
}
|
62
templates/android/route_rule_set.json
Normal file
62
templates/android/route_rule_set.json
Normal file
@ -0,0 +1,62 @@
|
||||
{
|
||||
"route": {
|
||||
"rule_set": [
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-ads-all",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-geolocation-cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-geolocation-!cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-!cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geoip-cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geoip/rule-set/geoip-cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-games@cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-games@cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-steam@cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-steam@cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-google",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-google.srs",
|
||||
"download_detour": "default"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
223
templates/example-android.json
Normal file
223
templates/example-android.json
Normal file
@ -0,0 +1,223 @@
|
||||
{
|
||||
"log": {
|
||||
"level": "info",
|
||||
"timestamp": true
|
||||
},
|
||||
"dns": {
|
||||
"servers": [
|
||||
{
|
||||
"tag": "google",
|
||||
"address": "https://8.8.8.8/dns-query",
|
||||
"detour": "default"
|
||||
},
|
||||
{
|
||||
"tag": "local",
|
||||
"address": "h3://223.5.5.5/dns-query",
|
||||
"detour": "direct"
|
||||
},
|
||||
{
|
||||
"tag": "refused",
|
||||
"address": "rcode://refused"
|
||||
}
|
||||
],
|
||||
"rules": [
|
||||
{
|
||||
"rule_set": "geosite-category-ads-all",
|
||||
"server": "refused"
|
||||
},
|
||||
{
|
||||
"outbound": "any",
|
||||
"server": "local"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Direct",
|
||||
"server": "local"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Global",
|
||||
"server": "google"
|
||||
},
|
||||
{
|
||||
"rule_set": "geosite-geolocation-cn",
|
||||
"server": "local"
|
||||
},
|
||||
{
|
||||
"type": "logical",
|
||||
"mode": "and",
|
||||
"rules": [
|
||||
{
|
||||
"rule_set": "geosite-geolocation-!cn",
|
||||
"invert": true
|
||||
},
|
||||
{
|
||||
"rule_set": "geoip-cn"
|
||||
}
|
||||
],
|
||||
"server": "google",
|
||||
"client_subnet": "114.114.114.114/24"
|
||||
}
|
||||
],
|
||||
"final": "google"
|
||||
},
|
||||
"ntp": {
|
||||
"enabled": true,
|
||||
"interval": "30m0s",
|
||||
"server": "ntp.aliyun.com",
|
||||
"server_port": 123
|
||||
},
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "tun",
|
||||
"address": [
|
||||
"172.16.0.1/30",
|
||||
"fdfe:dcba:9876::1/126"
|
||||
],
|
||||
"auto_route": true,
|
||||
"strict_route": true,
|
||||
"exclude_interface": "tailscale0",
|
||||
"sniff": true
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"type": "selector",
|
||||
"tag": "default",
|
||||
"outbounds": [
|
||||
"\u003call-proxy-tags\u003e",
|
||||
"direct"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "direct",
|
||||
"tag": "direct"
|
||||
},
|
||||
{
|
||||
"type": "block",
|
||||
"tag": "block"
|
||||
},
|
||||
{
|
||||
"type": "dns",
|
||||
"tag": "dns"
|
||||
}
|
||||
],
|
||||
"route": {
|
||||
"rules": [
|
||||
{
|
||||
"type": "logical",
|
||||
"mode": "or",
|
||||
"rules": [
|
||||
{
|
||||
"protocol": "dns"
|
||||
},
|
||||
{
|
||||
"port": 53
|
||||
}
|
||||
],
|
||||
"outbound": "dns"
|
||||
},
|
||||
{
|
||||
"ip_is_private": true,
|
||||
"outbound": "direct"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Direct",
|
||||
"outbound": "direct"
|
||||
},
|
||||
{
|
||||
"clash_mode": "Global",
|
||||
"outbound": "default"
|
||||
},
|
||||
{
|
||||
"rule_set": "geosite-google",
|
||||
"outbound": "default"
|
||||
},
|
||||
{
|
||||
"type": "logical",
|
||||
"mode": "or",
|
||||
"rules": [
|
||||
{
|
||||
"rule_set": [
|
||||
"geoip-cn",
|
||||
"geosite-geolocation-cn",
|
||||
"geosite-cn",
|
||||
"geosite-category-games@cn",
|
||||
"geosite-steam@cn"
|
||||
]
|
||||
}
|
||||
],
|
||||
"outbound": "direct"
|
||||
}
|
||||
],
|
||||
"rule_set": [
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-ads-all",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-geolocation-cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-geolocation-!cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-geolocation-!cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geoip-cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geoip/rule-set/geoip-cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-games@cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-games@cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-steam@cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-steam@cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-cn",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-cn.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
"type": "remote",
|
||||
"tag": "geosite-google",
|
||||
"format": "binary",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-google.srs",
|
||||
"download_detour": "default"
|
||||
}
|
||||
],
|
||||
"final": "default",
|
||||
"auto_detect_interface": true
|
||||
},
|
||||
"experimental": {
|
||||
"cache_file": {
|
||||
"enabled": true
|
||||
},
|
||||
"clash_api": {
|
||||
"external_controller": "127.0.0.1:9090",
|
||||
"external_ui": "./ui",
|
||||
"external_ui_download_detour": "default",
|
||||
"default_mode": "Enhanced"
|
||||
}
|
||||
}
|
||||
}
|
@ -1,20 +1,18 @@
|
||||
{
|
||||
"log": {
|
||||
"level": "trace",
|
||||
"level": "info",
|
||||
"timestamp": true
|
||||
},
|
||||
"dns": {
|
||||
"servers": [
|
||||
{
|
||||
"tag": "google",
|
||||
"address": "https://dns.google/dns-query",
|
||||
"address_resolver": "local",
|
||||
"address_strategy": "prefer_ipv4",
|
||||
"client_subnet": "114.114.114.114/24"
|
||||
"address": "https://8.8.8.8/dns-query",
|
||||
"detour": "default"
|
||||
},
|
||||
{
|
||||
"tag": "local",
|
||||
"address": "https://223.5.5.5/dns-query",
|
||||
"address": "h3://223.5.5.5/dns-query",
|
||||
"detour": "direct"
|
||||
},
|
||||
{
|
||||
@ -61,6 +59,12 @@
|
||||
],
|
||||
"final": "google"
|
||||
},
|
||||
"ntp": {
|
||||
"enabled": true,
|
||||
"interval": "30m0s",
|
||||
"server": "ntp.aliyun.com",
|
||||
"server_port": 123
|
||||
},
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "tun",
|
||||
@ -150,7 +154,7 @@
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-ads-all",
|
||||
"format": "binary",
|
||||
"url": "https://ghp.ci/https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
|
@ -1,20 +1,18 @@
|
||||
{
|
||||
"log": {
|
||||
"level": "trace",
|
||||
"level": "info",
|
||||
"timestamp": true
|
||||
},
|
||||
"dns": {
|
||||
"servers": [
|
||||
{
|
||||
"tag": "google",
|
||||
"address": "https://dns.google/dns-query",
|
||||
"address_resolver": "local",
|
||||
"address_strategy": "prefer_ipv4",
|
||||
"client_subnet": "114.114.114.114/24"
|
||||
"address": "https://8.8.8.8/dns-query",
|
||||
"detour": "default"
|
||||
},
|
||||
{
|
||||
"tag": "local",
|
||||
"address": "https://223.5.5.5/dns-query",
|
||||
"address": "h3://223.5.5.5/dns-query",
|
||||
"detour": "direct"
|
||||
},
|
||||
{
|
||||
@ -61,6 +59,12 @@
|
||||
],
|
||||
"final": "google"
|
||||
},
|
||||
"ntp": {
|
||||
"enabled": true,
|
||||
"interval": "30m0s",
|
||||
"server": "ntp.aliyun.com",
|
||||
"server_port": 123
|
||||
},
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "tun",
|
||||
@ -149,7 +153,7 @@
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-ads-all",
|
||||
"format": "binary",
|
||||
"url": "https://ghp.ci/https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
|
@ -3,14 +3,12 @@
|
||||
"servers": [
|
||||
{
|
||||
"tag": "google",
|
||||
"address": "https://dns.google/dns-query",
|
||||
"address_resolver": "local",
|
||||
"address_strategy": "prefer_ipv4",
|
||||
"client_subnet": "114.114.114.114/24"
|
||||
"address": "https://8.8.8.8/dns-query",
|
||||
"detour": "default"
|
||||
},
|
||||
{
|
||||
"tag": "local",
|
||||
"address": "https://223.5.5.5/dns-query",
|
||||
"address": "h3://223.5.5.5/dns-query",
|
||||
"detour": "direct"
|
||||
},
|
||||
{
|
||||
|
8
templates/linux/ntp.json
Normal file
8
templates/linux/ntp.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"ntp": {
|
||||
"enabled": true,
|
||||
"server": "ntp.aliyun.com",
|
||||
"server_port": 123,
|
||||
"interval": "30m"
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-ads-all",
|
||||
"format": "binary",
|
||||
"url": "https://ghp.ci/https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
|
@ -3,14 +3,12 @@
|
||||
"servers": [
|
||||
{
|
||||
"tag": "google",
|
||||
"address": "https://dns.google/dns-query",
|
||||
"address_resolver": "local",
|
||||
"address_strategy": "prefer_ipv4",
|
||||
"client_subnet": "114.114.114.114/24"
|
||||
"address": "https://8.8.8.8/dns-query",
|
||||
"detour": "default"
|
||||
},
|
||||
{
|
||||
"tag": "local",
|
||||
"address": "https://223.5.5.5/dns-query",
|
||||
"address": "h3://223.5.5.5/dns-query",
|
||||
"detour": "direct"
|
||||
},
|
||||
{
|
||||
|
8
templates/windows/ntp.json
Normal file
8
templates/windows/ntp.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"ntp": {
|
||||
"enabled": true,
|
||||
"server": "ntp.aliyun.com",
|
||||
"server_port": 123,
|
||||
"interval": "30m"
|
||||
}
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
"type": "remote",
|
||||
"tag": "geosite-category-ads-all",
|
||||
"format": "binary",
|
||||
"url": "https://ghp.ci/https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"url": "https://raw.githubusercontent.com/SagerNet/sing-geosite/rule-set/geosite-category-ads-all.srs",
|
||||
"download_detour": "default"
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user