Fix fm350 dialing failure and add fm350 ipv6 disconnection detection

This commit is contained in:
windrua 2025-01-23 19:50:54 +08:00 committed by GitHub
parent 3ec8b74f47
commit 8442b5673b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -270,6 +270,7 @@ check_ip()
;; ;;
"mediatek") "mediatek")
check_ip_command="AT+CGPADDR=3" check_ip_command="AT+CGPADDR=3"
check_ipv6=1
stric=1 stric=1
;; ;;
esac esac
@ -277,6 +278,12 @@ check_ip()
esac esac
ipaddr=$(at "$at_port" "$check_ip_command" |grep +CGPADDR:) ipaddr=$(at "$at_port" "$check_ip_command" |grep +CGPADDR:)
if [ -n "$ipaddr" ];then if [ -n "$ipaddr" ];then
if [ "$check_ipv6" = "1" ] && [ "$pdp_type" = "IPv4v6" ];then
if ! ping -c 2 -w 5 2400:3200::1 > /dev/null 2>&1; then
m_debug "ipv6 is down,try to restart"
ifdown "$interface"V6 && sleep 2 && ifup "$interface"V6
fi
fi
ipv6=$(echo $ipaddr | grep -oE "\b([0-9a-fA-F]{0,4}:){2,7}[0-9a-fA-F]{0,4}\b") ipv6=$(echo $ipaddr | grep -oE "\b([0-9a-fA-F]{0,4}:){2,7}[0-9a-fA-F]{0,4}\b")
ipv4=$(echo $ipaddr | grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b") ipv4=$(echo $ipaddr | grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b")
disallow_ipv4="0.0.0.0" disallow_ipv4="0.0.0.0"
@ -761,6 +768,7 @@ at_dial()
esac esac
m_debug "dialing vendor:$manufacturer;platform:$platform; $cgdcont_command ; $at_command" m_debug "dialing vendor:$manufacturer;platform:$platform; $cgdcont_command ; $at_command"
at "${at_port}" "${cgdcont_command}" at "${at_port}" "${cgdcont_command}"
sleep 3 #修复fm350拨号失败问题 ps:350处理不过来
at "$at_port" "$at_command" at "$at_port" "$at_command"
} }