op-packages/openwrt-natmap/files/qb.sh
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

50 lines
1.5 KiB
Bash
Executable File

#!/bin/sh
# NATMap
protocol=$5
inner_port=$4
outter_ip=$1
outter_port=$2
ip4p=$3
rule_name=$(echo "${NAT_NAME}_v6_allow" | sed 's/[^a-zA-Z0-9]/_/g' | awk '{print tolower($0)}')
QB_WEB_UI_URL=$(echo $QB_WEB_UI_URL | sed 's/\/$//')
# update port
qbcookie=$(\
curl --retry 10 -Ssi -X POST \
-d "username=${QB_USERNAME}&password=${QB_PASSWORD}" \
"$QB_WEB_UI_URL/api/v2/auth/login" | \
sed -n 's/.*\(SID=.\{32\}\);.*/\1/p' )
echo "qbcookie: $qbcookie"
echo "outter_port: $outter_port"
curl --retry 10 -X POST \
-b "${qbcookie}" \
-d 'json={"listen_port":"'${outter_port}'"}' \
"$QB_WEB_UI_URL/api/v2/app/setPreferences"
# qb_allow_ipv6
if [ $QB_ALLOW_IPV6 = 1 ]; then
echo "rule_name: $rule_name"
# ipv6 allow
uci set firewall.$rule_name=rule
uci set firewall.$rule_name.name='Allow-qBittorrent-IPv6'
uci set firewall.$rule_name.src='wan'
uci set firewall.$rule_name.dest='lan'
uci set firewall.$rule_name.target='ACCEPT'
uci set firewall.$rule_name.proto='tcp udp'
# uci get firewall.$rule_name.dest_ip
# check if dest_ip is already set with return code
if uci get firewall.$rule_name.dest_ip >/dev/null 2>&1; then
uci del firewall.$rule_name.dest_ip
fi
for ip in $QB_IPV6_ADDRESS; do
uci add_list firewall.$rule_name.dest_ip="${ip}"
done
uci set firewall.$rule_name.family='ipv6'
uci set firewall.$rule_name.dest_port="${outter_port}"
# reload
uci commit firewall
/etc/init.d/firewall reload
fi