Junaid Sultan
Junaid Sultan

Reputation: 351

How to setup server for SMS communication for Teltonika FMB920

I am tring to create a vehicle tracking system based on GPS & GMS using Teltonika FMB920 tracking device. I am a bit confused on following things:

  1. How to setup the server for communicating with the device.
  2. How to save the data sent from the device on the server.
  3. Can I use any cloud platform like Azure or AWS IoT features for this purpose.

Any guidance in this regard will be really helpful for me.

Upvotes: -2

Views: 1327

Answers (1)

Michael Python_dev
Michael Python_dev

Reputation: 51

  1. How to setup the server for communicating with the device.

Teltonika fmbxxx typically send data using websockets TCP or UDP protocol. To setup the server correctly, the port that will be listening for data needs to be opened in the server and the server address and port need to be configured on the device with the teltonika configurator tool

  1. How to save the data sent from the device on the server. This depends on your use case but a good idea could be to use nosql database to save the data from device received by the server since its easier to scale when data size grows and easy to query and read the data

  2. Can I use any cloud platform like Azure or AWS IoT features for this purpose.

AFAIK yes you can. essentially what is need is server instance with a websocket client application that can receive data from tcp/udp protocol

Upvotes: 2

Related Questions