FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
+1 vote
474 views 1 comments
by anonymous

Hi dear colleages,

I´m trying to change a  RUTX09 from 3G to 4G by commands, no GUI access, but so far with no luck, using this command:

 uci set simcard.@sim[0].service=lte

after that,

# uci show simcard.@sim[0].service

simcard.cfg01aa0e.service='lte'

But RUTX09 remains connected in 3G. So, can you explain me how to change a RUTX from 3G to 4G by commands?

BR

Miguel Cabezas

1 Answer

+1 vote
by anonymous

Thanks for contacting TELTONIKA | Crowd-support forum.

You did right, you have just to add Two commands:

''uci commit simcard''          >>> It writes changes of the given configuration file ‘simcard’

''/etc/init.d/simcard restart''   >>> It restarts a particular service ‘simcard’

Check the current config:

root@Teltonika-RUTX11:~#  uci show simcard

simcard.@sim[0]=sim

simcard.@sim[0].modem='3-1'

simcard.@sim[0].position='1'

simcard.@sim[0].primary='1'

simcard.@sim[0].auto_apn='1'

simcard.@sim[0].enable_sms_limit='0'

simcard.@sim[0].band='auto'

simcard.@sim[0].service='3g'

simcard.@sim[1]=sim

simcard.@sim[1].modem='3-1'

simcard.@sim[1].position='2'

simcard.@sim[1].auto_apn='1'

Switch Service mode from 3G to LTE:

root@Teltonika-RUTX11:~# uci set simcard.@sim[0].service='lte'

root@Teltonika-RUTX11:~# uci commit simcard

root@Teltonika-RUTX11:~# /etc/init.d/simcard restart

Check the config after the modification:

root@Teltonika-RUTX11:~#  uci show simcard

simcard.@sim[0]=sim

simcard.@sim[0].modem='3-1'

simcard.@sim[0].position='1'

simcard.@sim[0].primary='1'

simcard.@sim[0].auto_apn='1'

simcard.@sim[0].enable_sms_limit='0'

simcard.@sim[0].band='auto'

simcard.@sim[0].service='lte'

simcard.@sim[1]=sim

simcard.@sim[1].modem='3-1'

simcard.@sim[1].position='2'

simcard.@sim[1].auto_apn='1'

 More information can be found here:

https://wiki.teltonika-networks.com/view/UCI_command_usage#Available_commands

https://wiki.teltonika-networks.com/view/FAQ

Should you need any additional information please let us know.

Best regards,

Best answer
by anonymous
Excellent! it works. Just I would add a final RUT reboot, after that the green led has changed from 3G to 4G.