5G终端自动拔号脚本
- 5G终端自动拔号脚本, 先进入飞行模式,再切出飞行模式, 最后 查询UE IP地址
5G终端自动拔号脚本
input=$1
if [ "$input"x = "1"x ]; then
cmd=at+cfun=1
echo "===========start dialing "
elif [ "$input"x = "0"x ] ; then
echo "===========start de-dialing "
cmd=at+cfun=0
else
echo "Usage: dial 1 #dialing "
echo " dial 0 #delialing "
exit
fi
echo -e "$cmd\r\n" > /dev/ttyUSB1
sleep 2
echo -e "at+cgpaddr" > /dev/ttyUSB1
cat /dev/ttyUSB1
The End.