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
287 views 0 comments
by anonymous
Could you please tell if it is possible to log mobile signal parameters to flash/ram and eventually get this data posted to ftp or http post'ed somewhere?

Something like the Traffic Logging works and pushes batches of logs onto a specified FTP server but for mobile signal.

Ideally I'd like to have an output of this command, timestamped:

gsmctl -A AT+QCAINFO

+QCAINFO: "pcc",6300,50,"LTE BAND 20",1,316,-65,-11,-35,21

+QCAINFO: "scc",323,75,"LTE BAND 1",1,351,-87,-15,-62,24

and pushed somewhere where I could parse it and store chronologically.

/azik

1 Answer

0 votes
by anonymous

Hi,

This can be done in two scenarios:

The first one, is creating a cron that would execute your wanted command and output it straight into a file.

gsmctl -A AT+QCAINFO > output.txt

And then using other command in cron that would curl your file to FTP server:

curl -T output.txt ftp://serverurl --user FTPUser:FTPPass

Second way to do it would be having a free or premium syslog server that would filter out cron scheduled command.

EB.