Teltonika Switch manual & back the SIM1 after every restart
Product | RUT950 |
Brand | Teltonika |
Highlight Information | Switch manually from SIM1 to SIM2 and set back the SIM1 slot as default after every restart |
Author | @Lakkhanaphon Saengchinda |
Importance | medium |
Publish Doc | Yes |
Years | 2023 |
Switch SIM แบบ Manual ทำได้ 2 วิธี
WebUi Networks > Mobile > General > SIM2, and set it as "Default SIM"
Run commands via CLI
ด้วยคำสั่ง
uci set simcard.@sim[0].primary='0' → ถ้าต้องการให้ SIM1 ไม่เป็น primary
uci set simcard.@sim[1].primary='1' → ถ้าต้องการให้ SIM2 เป็น primary
uci commit
reload_config
การตั้งค่า SIM1 หรือ SIM2 slot ทำหน้าที่เป็น default SIM ทุกครั้งที่ restart เครื่องกลับมา
สามารถทำได้โดย
ใส่ Command ด้านล่างนี้ไว้ใน - /etc/rc.local (หรือ System > Custom Scripts page)
root@Teltonika-RUT955:~# cat /etc/rc.local
# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
uci set simcard.@sim[0].primary='1' #SIM1
uci set simcard.@sim[1].primary='0' #SIM2
uci commit
reload_config
exit 0