feat(脚本): 添加人机验证卸载功能

pull/534/merge
mack-a 2020-12-28 15:12:53 +08:00
parent 644cce7c36
commit 507053165f
1 changed files with 51 additions and 6 deletions

View File

@ -2707,7 +2707,13 @@ ipv6HumanVerification(){
fi fi
checkIPv6 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 cat << EOF > ${configPath}09_routing.json
{ {
"routing":{ "routing":{
@ -2733,7 +2739,6 @@ ipv6HumanVerification(){
} }
EOF EOF
# cat << EOF > ${configPath}10_ipv6_outbounds.json
cat << EOF > ${configPath}10_ipv4_outbounds.json cat << EOF > ${configPath}10_ipv4_outbounds.json
{ {
"outbounds": [ "outbounds": [
@ -2755,6 +2760,46 @@ EOF
} }
EOF EOF
echoContent green " ---> 人机验证修改成功" 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 stop
handleXray start handleXray start
} }
@ -3043,7 +3088,7 @@ menu(){
cd cd
echoContent red "\n==============================================================" echoContent red "\n=============================================================="
echoContent green "作者mack-a" echoContent green "作者mack-a"
echoContent green "当前版本v2.2.8" echoContent green "当前版本v2.2.9"
echoContent green "Githubhttps://github.com/mack-a/v2ray-agent" echoContent green "Githubhttps://github.com/mack-a/v2ray-agent"
echoContent green "描述:七合一共存脚本" echoContent green "描述:七合一共存脚本"
echoContent red "==============================================================" echoContent red "=============================================================="