FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14090 questions

16729 answers

27457 comments

53743 members

0 votes
132 views 1 comments
by
Can someone point me to a doc showing how to get rssi via a post/get? Thx

1 Answer

0 votes
by
Hi,

If you mean the ready POST/GET functions in device - no, there's no possibility to get RSSI value through it, but you can do it through JSON-RPC and gsmctl commands.

https://wiki.teltonika-networks.com/view/RUT240_Monitoring_via_JSON-RPC_linux

https://wiki.teltonika-networks.com/view/Gsmctl_commands#Get_GSM_signal_.28RSSI.29_level

EB.
by

Actually it is possible to get RSSI information from the Teltonika routers WITHOUT logging in, if you tick the "Show mobile info at login page" selection in the setup. There is also a python3 script to handle this easily, available at https://extinfo.uniscada.eu/support/teltonika_signal.py

>>> from teltonika_signal import TeltonikaSignal

>>> t = TeltonikaSignal()

>>> t.get_teltonika_data()

{'operator': 'Telia Telia', 'connection_type': '4G (LTE)', 'signal_strength': '-67 dBm'}

>>>

There is a limitation however - it works with older firmware only, RUT2XX_R_00.01.x for example. 

The latest firmware (like RUT2_R_00.07.x) does not seem to have this information available before logging in, unfortunately.