feat(脚本): 添加人机验证卸载功能
parent
644cce7c36
commit
507053165f
51
install.sh
51
install.sh
|
@ -2707,7 +2707,13 @@ ipv6HumanVerification(){
|
|||
fi
|
||||
|
||||
checkIPv6
|
||||
|
||||
echoContent skyBlue "\n功能 1/${totalProgress} : ipv6人机验证"
|
||||
echoContent red "\n=============================================================="
|
||||
echoContent yellow "1.添加"
|
||||
echoContent yellow "2.卸载"
|
||||
read -p "请选择:" ipv6Status
|
||||
if [[ "${ipv6Status}" = "1" ]]
|
||||
then
|
||||
cat << EOF > ${configPath}09_routing.json
|
||||
{
|
||||
"routing":{
|
||||
|
@ -2733,7 +2739,6 @@ ipv6HumanVerification(){
|
|||
}
|
||||
EOF
|
||||
|
||||
# cat << EOF > ${configPath}10_ipv6_outbounds.json
|
||||
cat << EOF > ${configPath}10_ipv4_outbounds.json
|
||||
{
|
||||
"outbounds": [
|
||||
|
@ -2755,6 +2760,46 @@ EOF
|
|||
}
|
||||
EOF
|
||||
echoContent green " ---> 人机验证修改成功"
|
||||
|
||||
elif [[ "${ipv6Status}" = "2" ]]
|
||||
then
|
||||
cat << EOF > ${configPath}09_routing.json
|
||||
{
|
||||
"routing":{
|
||||
"domainStrategy": "AsIs",
|
||||
"rules": [
|
||||
{
|
||||
"type": "field",
|
||||
"protocol": [
|
||||
"bittorrent"
|
||||
],
|
||||
"outboundTag": "blocked"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
EOF
|
||||
|
||||
cat << EOF > ${configPath}10_ipv4_outbounds.json
|
||||
{
|
||||
"outbounds": [
|
||||
{
|
||||
"protocol": "freedom",
|
||||
"settings": {
|
||||
"domainStrategy": "UseIPv4"
|
||||
},
|
||||
"tag": "IPv4-out"
|
||||
}
|
||||
]
|
||||
}
|
||||
EOF
|
||||
echoContent green " ---> 人机验证卸载成功"
|
||||
else
|
||||
echoContent red " ---> 选择错误"
|
||||
ipv6HumanVerification
|
||||
exit
|
||||
fi
|
||||
|
||||
handleXray stop
|
||||
handleXray start
|
||||
}
|
||||
|
@ -3043,7 +3088,7 @@ menu(){
|
|||
cd
|
||||
echoContent red "\n=============================================================="
|
||||
echoContent green "作者:mack-a"
|
||||
echoContent green "当前版本:v2.2.8"
|
||||
echoContent green "当前版本:v2.2.9"
|
||||
echoContent green "Github:https://github.com/mack-a/v2ray-agent"
|
||||
echoContent green "描述:七合一共存脚本"
|
||||
echoContent red "=============================================================="
|
||||
|
|
Loading…
Reference in New Issue