I would like to program my Rooter with a bootup sequence that will fix the band , carrier and 4G to the device all the time , So when I lose connection in the middle of the day I am not redirect to a carrier I dont want to use .
I would like to know where I can find all the documentation to do this and
If some one could help me maybe.
Or Is it even possible to do that ?
Thanks in advance
My carrier bands are
UMTS
B2 (1900 PCS) UMTS
B5 (850) UMTS
And
LTE
B4 (1700/2100 AWS 1) LTE
B7 (2600) LTE
B17 (700 bc) LTE
AT command = Was able after many try to get rogers wireless.
those are the info that come with it.
AT+QNWINFO = +QNWINFO: “FDD LTE”,“302720”,“LTE BAND 5”,2426
AT+COPS? = +COPS: 0,0,“Rogers Wireless”,7
The startup code I have in the modem at the moment is :
autoupdate=$(uci get glconfig.autoupdate)
[ -z “$autoupdate” ] && {
uci set glconfig.autoupdate=service
uci set glconfig.autoupdate.time=‘04:00’
uci set glconfig.autoupdate.enable=‘0’
uci commit glconfig
}
samba=$(uci get glconfig.samba)
[ -z “$samba” ] && {
uci set glconfig.samba=service
uci set glconfig.samba.read_only=‘yes’
uci commit glconfig
}
/usr/bin/glautoupdater &
#(sleep 15;/usr/bin/gl_health) &
VIXMINI should turn of system led after boot is successful
if [ “$(cat /tmp/sysinfo/model)” = “VIXMINI” ]; then
echo 0 > /sys/class/leds/vixmini:blue:power/brightness
fi
if [ “$(cat /tmp/sysinfo/model)” = “microuter-N300” ]; then
echo 0 > /sys/class/leds/microuter-n300:blue:power/brightness
fi
if [ “$(cat /tmp/sysinfo/model)” = “GL-MT1300” ]; then
echo 4 > /proc/irq/23/smp_affinity
fi
killall uqmi
traffic=uci get glconfig.traffic_control.enable 2>/dev/null
if [ “$traffic” == “1” ];then
uci set tertf.general.cleartraffic=‘1’
uci commit tertf
fi
/etc/init.d/gl_ipv6 reload 2>/dev/null