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.
0 votes
260 views 1 comments
by anonymous
Can someone point me to a doc showing how to get rssi via a post/get? Thx

1 Answer

0 votes
by anonymous
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 anonymous

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.