Skip to content

Commit e467ccd

Browse files
authored
add tags for outbounds
1 parent e80168a commit e467ccd

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

reality-ezpz.sh

+17-4
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,7 @@ function generate_engine_config {
972972
if [[ ${config[warp]} == 'ON' ]]; then
973973
warp_object='{
974974
"type": "wireguard",
975+
"tag": "warp",
975976
"server": "engage.cloudflareclient.com",
976977
"server_port": 2408,
977978
"system_interface": false,
@@ -1005,7 +1006,7 @@ function generate_engine_config {
10051006
},
10061007
"dns": {
10071008
"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"}')
10091010
],
10101011
"strategy": "prefer_ipv4"
10111012
},
@@ -1052,17 +1053,18 @@ function generate_engine_config {
10521053
}
10531054
],
10541055
"outbounds": [
1055-
$([[ ${config[warp]} == ON ]] && echo "${warp_object}" || echo '{"type": "direct"},')
10561056
{
10571057
"type": "direct",
1058-
"tag": "dns"
1058+
"tag": "internet"
10591059
},
1060+
$([[ ${config[warp]} == ON ]] && echo "${warp_object}" || true)
10601061
{
10611062
"type": "block",
10621063
"tag": "block"
10631064
}
10641065
],
10651066
"route": {
1067+
"final": "$([[ ${config[warp]} == ON ]] && echo "warp" || echo "internet")",
10661068
"rules": [
10671069
{
10681070
"geoip": [
@@ -1143,6 +1145,7 @@ EOF
11431145
if [[ ${config[warp]} == 'ON' ]]; then
11441146
warp_object='{
11451147
"protocol": "wireguard",
1148+
"tag": "warp",
11461149
"settings": {
11471150
"secretKey": "'"${config[warp_private_key]}"'",
11481151
"address": [
@@ -1188,6 +1191,7 @@ EOF
11881191
"listen": "0.0.0.0",
11891192
"port": 8443,
11901193
"protocol": "vless",
1194+
"tag": "inbound",
11911195
"settings": {
11921196
"clients": [${users_object}],
11931197
"decryption": "none"
@@ -1215,7 +1219,11 @@ EOF
12151219
}
12161220
],
12171221
"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)
12191227
{
12201228
"protocol": "blackhole",
12211229
"tag": "block"
@@ -1268,6 +1276,11 @@ EOF
12681276
"domain:sunlight-leds.com",
12691277
"domain:icecyber.org"
12701278
]
1279+
},
1280+
{
1281+
"type": "field",
1282+
"inboundTag": "inbound",
1283+
"outboundTag": "$([[ ${config[warp]} == ON ]] && echo "warp" || echo "internet")"
12711284
}
12721285
]
12731286
},

0 commit comments

Comments
 (0)