Domnev

From Teltonika Networks Wiki
Revision as of 11:21, 20 April 2023 by Domnev (talk | contribs)

The information on this page is updated in accordance with the 00.07.4 firmware version .

Summary

In this guide, Modbus TCP master MQTT Gateway function will be configured with two different types of MQTT Brokers. First using third-party MQTT Broker services (in this example Flespi.io). Second, using another router as MQTT Broker. Two RUT955 routers will be used as Modbus TCP Master and Slave, and the PC acts as MQTT Publisher and Subscriber.

Configuration overview & prerequisites

  • Two RUT955 routers - one acts as Modbus TCP Master, another as Modbus TCP Slave
  • Flespi.io account to act as an MQTT Broker/Publisher/Subscriber (for first configuration example)
  • RUT with a Public IP address to act as MQTT Broker (for second configuration example)
  • An end device (PC, Laptop) to act as MQTT Subscriber/Publisher (for second configuration example)

Configuration using flespi.io as MQTT Broker

Networking Topology MQTT MODBUS flespi configuration v1.png

Configuring RUT955 MQTT Gateway


Go to Services → Modbus → MQTT Gateway and there:

  1. Enable the instance;
  2. Enter Host (copied from flespi connection settings without 'wss://' and port);
  3. Enter Username (Copied from flespi Connection settings generated token);
  4. Enter Password.
MQTT Gateway config.png

Note: Everything else can be left as default or changed according to your needs.

Configuring RUT955 Serial Gateway


Under the MQTT Gateway configuration, create the Serial Gateway:

  1. Enter the desired device ID;
  2. Select the desired serial interface.
Serial gateway config.png

Configuring Flespi.io MQTT Broker


Log in or create an account on https://flespi.io;

  1. Navigate to MQTT Board on the left side menu;
  2. On the right-hand panel, top right corner, next to the name of the MQTT board, press the cogwheel-looking icon to open Connection Settings;
  3. In the opened window, press "Get flespi token" to generate a username;
  4. Enter the Client name;
  5. Copy the Host address;
  6. Copy Username;
  7. Create a password.

Once done, save all the changes

Flespi board.png


Message format for MQTT publisher


 1 <COOKIE> <SERIAL_DEVICE_ID> <TIMEOUT> <SLAVE_ID> <MODBUS_FUNCTION> <FIRST_REGISTER> <REGISTER_COUNT/VALUES>

The format is in the text - heavier and slower, but less difficult to edit.

1. Format version 1
2. Cookie from 0 to 264 -1
3. Serial device ID a string used to identify a serial device. Must match with Device ID field in MQTT Gateway page Serial gateway configuration section
4. Timeout timeout for Modbus connection, in seconds. Range [1..999].
5. Slave ID Indicates to which slave request is sent
6. Modbus function Modbus task type that will be executed. Possible values are:
  • 1 - read coils;
  • 2 - read input coils;
  • 3 - read holding registers;
  • 4 - read input registers;
  • 5 - set single coil;
  • 6 - write to a single holding register;
  • 15 - set multiple coils;
  • 16 - write to multiple holding registers.
7. First register number (not address) of the first register/coil/input (in range [1..65536]) from which the registers/coils/inputs will be read/written to.
8. Registry count
  • 1 - coil count (in range [1..2000]); must not exceed the boundary (first coil number + coil count <= 65537);
  • 2 - input count (in range [1..2000]); must not exceed the boundary (first input number + input count <= 65537);
  • 3 - holding register count (in range [0..125]); must not exceed the boundary (first register number + holding register count <= 65537);
  • 4 - input register count (in range [0..125]); must not exceed the boundary (first register number + input register count <= 65537);
  • 5 - coil value (in range [0..1]);
  • 6 - holding register value (in range [0..65535]);
  • 15 - coil count (in range [1..1968]); must not exceed the boundary (first coil number + coil count <= 65537); and coil values separated with commas, without spaces (e.g., 1,2,3,654,21,789); there must be exactly as many values as specified (with coil count); each value must be in the range of [0..1].



  • Examples


    Setting relay (on) (Relay address is 202, which means 'Number of first register will be 203) 0 65432 0 192.168.1.1 502 5 1 6 203 1
    Getting uptime 0 65432 0 192.168.1.1 502 5 1 3 2 2

    Testing MQTT Publisher and Subscriber on flespi.io


    Log in and navigate to MQTT Board on https://flespi.io

    Add a Subscriber:

    1. Press '+' button on the top right corner
    2. Select 'Subscriber'
    3. In the topic field enter 'response'
    4. Press 'Subscribe' button

    Networking MQTT Modbus flespi subscriber config1 v1.png Networking MQTT Modbus flespi subscriber config2 v1.png

    Add a Publisher:

    1. Press '+' button on the top right corner
    2. Select 'Publisher'
    3. In the topic field enter 'request'
    4. In the message field enter message, for this example 'Getting uptime' is used
    5. Press 'Publish' button

    Networking MQTT Modbus flespi publisher config1 v1.png Networking MQTT Modbus flespi publisher config2 v1.png


    Check the response in the 'Subscriber' tab, you should receive a message similar to the one below.


    Networking MQTT Modbus flespi Response v2.png

    When the value climbs over 65535 the counter resets and the value held by the first register increases by 1. So one way to interpret the results would be to multiply the value in the first register by 216 and add it to the value of the second register. In this example: 9 * 65536 + 3502 = 593326s or 6 days 20 hours 48 minutes and 46 seconds.

    This Means that MQTT Gateway on Modbus TCP Master router is working correctly and Modbus TCP Slave receives requests.

    Configuration using a router as MQTT Broker

    Networking Topology MQTT MODBUS RUTbroker configuration v1.png

    Configuring Modbus TCP Master, MQTT Gateway MQTT Broker on RUT240, and MQTT Publisher/Subscriber on PC


    The same configuration will be used for Modbus TCP Master and Slave RUT955 routers as in the previous example, only settings in Modbus TCP Master router RUT955 will be changed to match MQTT Broker on RUT240 router

    Navigate to Services → Modbus MQTT Gateway

    1. Enable
    2. Host: Enter Public IP address of MQTT Broker (RUT240)
    3. Username: N/A
    4. Password: N/A
    5. Press Save & Apply

    Networking MQTT Modbus MQTT gateway config v1.png

    Configuring RUT MQTT Broker


    Navigate to Services → MQTT → Broker

    1. Select Enable
    2. Check Enable Remote Access
    3. Press Save & Apply

    Networking MQTT Modbus MQTT Broker RUTos config v1.png

    Testing MQTT Gateway


    For testing purposes, two terminal windows will be used on the same PC.

    To get Ubuntu terminal on Windows 10/11, refer to the following link for instructions: https://tutorials.ubuntu.com/tutorial/tutorial-ubuntu-on-windows#0

    • Open first terminal, which will act as Subscriber. Type in:

    mosquitto_sub -h [Host_address] -p [Port] -t [Topic]

    Networking MQTT Modbus Subscriber in terminal v1.png

    • Open second terminal, which will act as Publisher. Type in:

    mosquitto_pub -h [Host_address] -p [Port] -m [‘Message’] -t [Topic]

    Networking MQTT Modbus Publisher testing v1.png

    • On the first window - Subscriber, a response should appear

    Networking MQTT Modbus Subscriber response ubuntu v1.png

    See Also