@@ -972,6 +972,7 @@ function generate_engine_config {
972
972
if [[ ${config[warp]} == ' ON' ]]; then
973
973
warp_object=' {
974
974
"type": "wireguard",
975
+ "tag": "warp",
975
976
"server": "engage.cloudflareclient.com",
976
977
"server_port": 2408,
977
978
"system_interface": false,
@@ -1005,7 +1006,7 @@ function generate_engine_config {
1005
1006
},
1006
1007
"dns": {
1007
1008
"servers": [
1008
- $( [[ ${config[safenet]} == ON ]] && echo ' {"address": "tcp://1.1.1.3", "detour": "dns "},{"address": "tcp://1.0.0.3", "detour": "dns "}' || echo ' {"address": "tcp://1.1.1.1", "detour": "dns "},{"address": "tcp://1.0.0.1", "detour": "dns "}' )
1009
+ $( [[ ${config[safenet]} == ON ]] && echo ' {"address": "tcp://1.1.1.3", "detour": "internet "},{"address": "tcp://1.0.0.3", "detour": "internet "}' || echo ' {"address": "tcp://1.1.1.1", "detour": "internet "},{"address": "tcp://1.0.0.1", "detour": "internet "}' )
1009
1010
],
1010
1011
"strategy": "prefer_ipv4"
1011
1012
},
@@ -1052,17 +1053,18 @@ function generate_engine_config {
1052
1053
}
1053
1054
],
1054
1055
"outbounds": [
1055
- $( [[ ${config[warp]} == ON ]] && echo " ${warp_object} " || echo ' {"type": "direct"},' )
1056
1056
{
1057
1057
"type": "direct",
1058
- "tag": "dns "
1058
+ "tag": "internet "
1059
1059
},
1060
+ $( [[ ${config[warp]} == ON ]] && echo " ${warp_object} " || true)
1060
1061
{
1061
1062
"type": "block",
1062
1063
"tag": "block"
1063
1064
}
1064
1065
],
1065
1066
"route": {
1067
+ "final": "$( [[ ${config[warp]} == ON ]] && echo " warp" || echo " internet" ) ",
1066
1068
"rules": [
1067
1069
{
1068
1070
"geoip": [
@@ -1143,6 +1145,7 @@ EOF
1143
1145
if [[ ${config[warp]} == ' ON' ]]; then
1144
1146
warp_object=' {
1145
1147
"protocol": "wireguard",
1148
+ "tag": "warp",
1146
1149
"settings": {
1147
1150
"secretKey": "' " ${config[warp_private_key]} " ' ",
1148
1151
"address": [
@@ -1188,6 +1191,7 @@ EOF
1188
1191
"listen": "0.0.0.0",
1189
1192
"port": 8443,
1190
1193
"protocol": "vless",
1194
+ "tag": "inbound",
1191
1195
"settings": {
1192
1196
"clients": [${users_object} ],
1193
1197
"decryption": "none"
@@ -1215,7 +1219,11 @@ EOF
1215
1219
}
1216
1220
],
1217
1221
"outbounds": [
1218
- $( [[ ${config[warp]} == ON ]] && echo " ${warp_object} " || echo ' {"protocol": "freedom"},' )
1222
+ {
1223
+ "protocol": "freedom",
1224
+ "tag": "internet"
1225
+ },
1226
+ $( [[ ${config[warp]} == ON ]] && echo " ${warp_object} " || true)
1219
1227
{
1220
1228
"protocol": "blackhole",
1221
1229
"tag": "block"
@@ -1268,6 +1276,11 @@ EOF
1268
1276
"domain:sunlight-leds.com",
1269
1277
"domain:icecyber.org"
1270
1278
]
1279
+ },
1280
+ {
1281
+ "type": "field",
1282
+ "inboundTag": "inbound",
1283
+ "outboundTag": "$( [[ ${config[warp]} == ON ]] && echo " warp" || echo " internet" ) "
1271
1284
}
1272
1285
]
1273
1286
},
0 commit comments