如何为Teltonika FMB920设置SMS通信服务器

发布于 2025-01-21 15:29:04 字数 202 浏览 0 评论 0原文

我正在根据GPS&创建一个车辆跟踪系统。使用Teltonika FMB920跟踪设备的GMS。我对以下内容有些困惑:

  1. 如何设置服务器以与设备通信。
  2. 如何保存从服务器上设备发送的数据。
  3. 我可以为此目的使用任何云平台,例如Azure或AWS IoT功能。

在这方面的任何指导对我来说都会有所帮助。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅气称霸 2025-01-28 15:29:04
  1. 如何设置服务器以与设备通信。

Teltonika FMBXXX通常使用Websockets TCP或UDP协议发送数据。要正确设置服务器,需要在服务器中打开数据的端口,并且需要使用

  • ​noreferrer“>如何在配置工具中更新服务器设置
  1. 如何保存从服务器上设备发送的数据。
    这取决于您的用例,但是一个好主意可能是使用NOSQL数据库来保存服务器接收到的数据,因为当数据大小增长并且易于查询并读取数据

    时,它易于扩展。

  2. 我可以使用任何内容为此目的

afaik是的,你可以。本质上,需要的是带有WebSocket客户端应用程序的服务器实例,该应用程序可以从TCP/UDP协议接收数据

  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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文