GL-X750 Startup programming question (repost in technical support ! )

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

I am not sure about the problem you are solving.

“redirect to a carrier I dont want to use” does not make sense to me. Can you explain?

Do you mean that you the router reboot, the config is changed?

If this is the question, you can just upgrade to 3.215 snapshot and the config persist during reboot.

I am using a the sim card with data roaming data.

When I roam : the Modem always alterneta from the 3 main carrier here. But I want to only be able
to connect one of them As I get the best connection from it !

So , I wonder , How can we Setup with AT command or command in the Startup a way that will
lock that 1 carrier I want to use .

thanks

Don’t know how to lock carrier. But I can send you the AT command manual to check.

because on my phone I can select the carrier I want at all time ,

Is their a way to input , like we can input band to use , Ok , just use This carrier ?

thas is why I give you those line that come with the AT command.

AT+QNWINFO = +QNWINFO: “FDD LTE”,“302720”,“LTE BAND 5”,2426

AT+COPS? = +COPS: 0,0,“Rogers Wireless”,7

maybe we can program something that only look for that.

and that is the band they use , If i can filter anything else , that could be a good start.

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

You can just lock the band in the UI using AT command. Does that work for you?

How does it work exactly can I hav ea munal for all the AT command possible ?

and after that , can we put those command on startup ? so we dont have to go in the device
each time I put it online ?

IN the UI, go to AT command and find the Lock band from drop list.

I am already familiar with this window.

What I would like to know is what are all the AT Command possible and what they do ./

and if we can implement them in the Startup function , so we are making sure they are activated.

all good now , I receive the manual in another link ! THANKS