<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/80861/mqtt-sn-event-retransmission-retries-limit-has-been-reached</link><description>Hi, 
 I am using an pca10059 as a SED together with a border router in my thread network. The SED shall publish every 5 min sensor data. That works fine. But after some time (randomly after 40 min or 6h) I get this error message via logger and I cant</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 03 Dec 2021 14:16:01 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/80861/mqtt-sn-event-retransmission-retries-limit-has-been-reached" /><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/341912?ContentTypeID=1</link><pubDate>Fri, 03 Dec 2021 14:16:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0145dd4e-463b-431b-86bc-2bded70e01c2</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi Maboo&lt;/p&gt;
&lt;p&gt;You get error code 0xE (14) which is NRF_ERROR_NULL.&amp;nbsp; (See nRF5_Thread_Zigbee/components/drivers_nrf/nrf_soc_nosd/nrf_error.h)&lt;br /&gt;This is likely from the function:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;uint32_t mqttsn_client_connect(mqttsn_client_t      * p_client,
                               mqttsn_remote_t      * p_remote,
                               uint8_t                gateway_id,
                               mqttsn_connect_opt_t * p_options)
{
    NULL_PARAM_CHECK(p_client);
    NULL_PARAM_CHECK(p_remote);
    NULL_PARAM_CHECK(p_options);

    if (gateway_id == 0 || p_options-&amp;gt;alive_duration == 0 || p_options-&amp;gt;client_id_len == 0)
    {
        return NRF_ERROR_NULL;
    }

    if (p_options-&amp;gt;will_flag == 1 &amp;amp;&amp;amp; (p_options-&amp;gt;will_msg_len == 0 || p_options-&amp;gt;will_topic_len == 0)) 
    {
        return NRF_ERROR_NULL;
    }

    if (!is_initialized(p_client))
    {
        return NRF_ERROR_FORBIDDEN;
    }

    if (!is_eligible_for_establishing_connection(p_client))
    {
        return NRF_ERROR_INVALID_STATE;
    }

    memset(&amp;amp;(p_client-&amp;gt;gateway_info.addr), 0, sizeof(p_client-&amp;gt;gateway_info.addr));
    memcpy(&amp;amp;(p_client-&amp;gt;gateway_info.addr), p_remote, sizeof(p_client-&amp;gt;gateway_info.addr));

    p_client-&amp;gt;gateway_info.id = gateway_id;

    connect_info_init(p_client, p_options);

    uint32_t err_code = mqttsn_packet_sender_connect(p_client);
    if (err_code == NRF_SUCCESS)
    {   
        mqttsn_client_state_update(p_client, SENT_CONNECT);
    }   

    return err_code;
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Could you find the values of these parameters, and which one causes the error?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The&amp;nbsp; &lt;a href="https://github.com/osaether/otbr-mqtt-sn"&gt;OTBR with MQTT-SN&lt;/a&gt; I linked to earlier should do about the same thing you are trying to do. Maybe have a look at this to see how it does things.&lt;/p&gt;
&lt;p&gt;Let me quote you from some time back:&lt;/p&gt;
[quote user="Maboo"]unfortunately I do have some problems to get the OTBR running.[/quote]
&lt;p&gt;The OTBR I linked to was running in Docker, which should be relatively straight forward. If you describe the issues you are facing setting it up, I can try to help you make it work.&lt;/p&gt;
&lt;p&gt;If it is fast to set up, it would be interesting to see if it behaves differently that the version you are building.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/341666?ContentTypeID=1</link><pubDate>Thu, 02 Dec 2021 09:56:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:314103a7-1acd-4632-9230-0bc75c7ef123</guid><dc:creator>Maboo</dc:creator><description>&lt;p&gt;Hi Sigurd,&lt;/p&gt;
&lt;p&gt;it has been a while. I was working on the OTBR. I was able to install it to an RPi 4 using this&amp;nbsp;&lt;a href="https://openthread.io/guides/border-router/build"&gt;tutorial&lt;/a&gt;&amp;nbsp;and an pca10059 as RCP.&amp;nbsp;Afterwards I installed the paho-mqtt-sn gateway to the RPi 4 using that&amp;nbsp;&lt;a href="https://github.com/eclipse/paho.mqtt-sn.embedded-c/tree/master/MQTTSNGateway"&gt;website&lt;/a&gt;. Then i flashed a pca10056 with the standard&amp;nbsp;&lt;span&gt;&amp;quot;mqttsn_client_publisher&amp;quot; example and connect it to the thread network from the OTBR. Both devices are visible via CLI &amp;quot;&amp;gt; router table&amp;quot;. OTBR is leader, DK is router, ping each other is also possible as well.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;After starting the mqtt-sn-gateway I tried to connect to&amp;nbsp;it with&amp;nbsp;the pca10056 by pressing the buttons. That is what I get:&lt;/p&gt;
&lt;p&gt;mqtt-sn-gateway:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;pi@raspberrypi:/etc/paho.mqtt-sn.embedded-c/MQTTSNGateway/bin $ sudo ./MQTT-SNGateway 

 ***************************************************************************
 * MQTT-SN Gateway
 * Part of Project Paho in Eclipse
 * (https://github.com/eclipse/paho.mqtt-sn.embedded-c.git)
 *
 * Author : Tomoaki YAMAGUCHI
 * Version: 1.5.1
 ***************************************************************************
 ConfigFile  : ./gateway.conf
 ClientList  : /path/to/your_clients.conf
 Broker      : mqtt.eclipseprojects.io : 1883, 8883
 RootCApath  : (null)
 RootCAfile  : (null)
 CertKey     : (null)
 PrivateKey  : (null)
 SensorN/W   : Multicast Address: [ff33:40:fdde:ad00:beef:0:0:1]:1883, Gateway Port:47193, Interface: wpan0, Hops:1
 Max Clients : 30

20211202 092716.374 PahoGateway-01 starts running.


20211202 092719.544   SEARCHGW          &amp;lt;---  Client                              03 01 01
20211202 092719.545   GWINFO            ---&amp;gt;  Clients                             03 02 01
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;DK - JLinkLog:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;SEGGER J-Link V7.50 - Real time terminal output
J-Link OB-SAM3U128-V2-NordicSemi compiled Feb  2 2021 16:47:20 V1.0, SN=683835218
Process: JLinkExe
&amp;lt;info&amp;gt; app_timer: RTC: initialized.
&amp;lt;info&amp;gt; app: Thread version   : OPENTHREAD/20191113-00534-gc6a258e3; NRF52840; Apr  5 2020 21:51:18
&amp;lt;info&amp;gt; app: Network name     : NordicOpenThread
&amp;lt;info&amp;gt; app: Thread interface has been enabled.
&amp;lt;info&amp;gt; app: 802.15.4 Channel : 11
&amp;lt;info&amp;gt; app: 802.15.4 PAN ID  : 0xABCD
&amp;lt;info&amp;gt; app: Radio mode       : rx-on-when-idle
&amp;lt;warning&amp;gt; app_timer: RTC instance already initialized.
&amp;lt;info&amp;gt; app: State changed! Flags: 0x011FD33D Current role: 1

&amp;lt;info&amp;gt; app: State changed&amp;lt;info&amp;gt; app: State changed! Flags: 0x00000064 Current role: 3

&amp;lt;info&amp;gt; app: MQTT-SN event: Gateway discovery procedure has finished.

&amp;lt;info&amp;gt; app: MQTT-SN event: Gateway discovery result: 0x3.

&amp;lt;error&amp;gt; app: CONNECT message could not be sent. Error: 0xE&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;So the buttonpress somehow triggers the SEARCHGW and GWINFO but i still cant connect.&lt;/p&gt;
&lt;p&gt;While searching for a solution, I came across the gateway.conf.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#  SensorNetworks parameters
#==============================
#
# UDP | DTLS 
# 

GatewayPortNo=10000
MulticastPortNo=1883
MulticastIP=225.1.1.1
MulticastTTL=1

#
# UDP6 | DTLS6
#

GatewayIPv6PortNo=47193
MulticastIPv6PortNo=1883
MulticastIPv6=ff33:40:fdde:ad00:beef:0:0:1
MulticastIPv6If=wpan0
MulticastHops=1&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I tried to configure it like on the nrf border router image. Especially the&amp;nbsp;GatewayIPv6PortNo, MulticastIPv6 and&amp;nbsp;MulticastIPv6If was different. It still didn&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;I guess it has something to do with the network prefixes, since when I use &amp;quot;~$ sudo ot-ctl netdata show&amp;quot;, there are none.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;pi@raspberrypi:~ $ sudo ot-ctl netdata show
Prefixes:
Routes:
Services:
44970 01 4a04b000000e10 s 6000
44970 5d fdf4f30b7d7292086c737a4e8b86d1eed11f s 6000
Done&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I know I can add them by:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;~ $ sudo ot-ctl add prefix &amp;lt;ipv6-prefix&amp;gt; paros med
~ $ sudo ot-ctl netdata register //activates them&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;But I couldn&amp;#39;t figure how to get the correct prefix.&lt;/p&gt;
&lt;p&gt;Do you have any idea?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/337329?ContentTypeID=1</link><pubDate>Wed, 03 Nov 2021 15:35:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5874e884-2b8c-4255-89ec-0fdfede9579a</guid><dc:creator>Maboo</dc:creator><description>&lt;p&gt;Hi Sigurd,&lt;/p&gt;
&lt;p&gt;thank you anyway for your help. I will come back to you, if i need some help with the OTBR.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Markus&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/336981?ContentTypeID=1</link><pubDate>Tue, 02 Nov 2021 07:53:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1026f702-0aea-4aff-abe8-68c88ba36cfb</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;We do not seem to have any available way to print out logs for the nRF5 Border Router.&lt;/p&gt;
[quote user="Maboo"]unfortunately I do have some problems to get the OTBR running.[/quote]
&lt;p&gt;If you want help with getting this to work, let me know some details, and we can try to solve it.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/336524?ContentTypeID=1</link><pubDate>Thu, 28 Oct 2021 14:10:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ccae8d54-2ea2-4039-8e6a-64aae808f3e1</guid><dc:creator>Maboo</dc:creator><description>&lt;p&gt;Perfect, thank you very much!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/336479?ContentTypeID=1</link><pubDate>Thu, 28 Oct 2021 12:35:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9667d8bc-b807-4d5e-861d-641a8590c694</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I get the same error as you. &lt;br /&gt;I will contact our developers to see if i am able to find out how to print these logs, and hope to be back with more by Monday.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/336436?ContentTypeID=1</link><pubDate>Thu, 28 Oct 2021 11:26:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:00c6fab2-f365-45ec-b0fe-0587eac0584b</guid><dc:creator>Maboo</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;that is what i get:&lt;/p&gt;
&lt;p&gt;I set: ShearedMemory=YES;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;pi@raspberrypi:/usr/sbin $ ./MQTT-SNLogmonitor
terminate called after throwing an instance of &amp;#39;MQTTSNGW::Exception&amp;#39;
  what():  Semaphore can&amp;#39;t be created.
Aborted
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I couldn&amp;#39;t even find one hint on the internet what that error means...&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Maboo&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/336270?ContentTypeID=1</link><pubDate>Wed, 27 Oct 2021 14:48:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5339296-e4ad-4545-83f0-3b8267158c03</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I have not been able to make this work yet.&lt;br /&gt;But the MQTT-SN is run on the nRF5 border router from the &amp;quot;paho-mqttsn-gateway.service&amp;quot;. This can be seen in &amp;quot;/etc/systemd/system/paho-mqttsn-gateway.service&amp;quot;. From this file, we can see that the MQTT-SN HGateway runs from &amp;quot;/usr/sbin/MQTT-SNGateway&amp;quot;. &lt;br /&gt;In the same folder, you can find &amp;quot;/usr/sbin/MQTT-SNLogmonitor&amp;quot;. &lt;br /&gt;This relates to paho MQTT-Sn on &lt;a href="https://github.com/eclipse/paho.mqtt-sn.embedded-c/tree/master/MQTTSNGateway#how-to-monitor-the-gateway-from-a-remote-terminal"&gt;How to monitor the gateway from a remote terminal.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Try running this Logmonitor. Do you get a log?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/335809?ContentTypeID=1</link><pubDate>Mon, 25 Oct 2021 14:51:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:386465c6-27e9-42cf-b9fb-d1e73b4d3220</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I will set up a nRF5 Thread router and see if I am able to find MQTT-SN logs.&lt;br /&gt;I hope to be done with this by Wednesday.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/335582?ContentTypeID=1</link><pubDate>Sun, 24 Oct 2021 08:25:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f9a296ea-4ac8-4558-870f-b983d67c38d9</guid><dc:creator>Maboo</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;unfortunately I do have some problems to get the OTBR running. I won&amp;#39;t give up yet, but it would be very helpful, if you could ask around how the logs on the nRF BR work.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Maboo&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/335293?ContentTypeID=1</link><pubDate>Thu, 21 Oct 2021 12:01:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8bf89f29-5c4d-4d15-8ab6-1c14b8020d2e</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I do not know now how to read the log from the nRF Border Router.&lt;/p&gt;
&lt;p&gt;However, there is &lt;a href="https://github.com/osaether/otbr-mqtt-sn"&gt;this version&lt;/a&gt; of a Openthread Border Router with MQTT-SN support which is an alternative to using the nRF Border Router as a gateway.&lt;/p&gt;
&lt;p&gt;In this OTBR, you can see the logs when you run the &amp;quot;docker run [...]&amp;quot; command.&lt;/p&gt;
&lt;p&gt;If you are able to try this, it would be interesting to see both:&lt;br /&gt;1. Is the error still happening with another version of the Gateway?&lt;br /&gt;2. The error logs from this version.&lt;/p&gt;
&lt;p&gt;If this is not possible for you to test, let me know, and I will try to dig for the logs in the nRF Border Router.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/335222?ContentTypeID=1</link><pubDate>Thu, 21 Oct 2021 08:47:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b9059e71-49ba-4393-9c3c-9fbd469f96f0</guid><dc:creator>Maboo</dc:creator><description>&lt;p&gt;Hi Sigurd,&lt;/p&gt;
&lt;p&gt;thanks for your reply. I tried to find a way to debug the gateway. The standard&amp;nbsp;&lt;a href="https://github.com/eclipse/paho.mqtt-sn.embedded-c/tree/master/MQTTSNGateway"&gt;Paho-mqtt-sn-gateway&lt;/a&gt;&amp;nbsp;seems to have a LogMonitor. But i couldn&amp;#39;t find one within the nrf gateway (nrf border router image). Is there any LogMonitor available?&lt;/p&gt;
&lt;p&gt;Thats my paho-mqtt-sn-gateway.conf:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#**************************************************************************
# Copyright (c) 2016-2019, Tomoaki Yamaguchi
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# and Eclipse Distribution License v1.0 which accompany this distribution.
#
# The Eclipse Public License is available at
#    http://www.eclipse.org/legal/epl-v10.html
# and the Eclipse Distribution License is available at
#   http://www.eclipse.org/org/documents/edl-v10.php.
#***************************************************************************
#
# config file of MQTT-SN Gateway
#

# IPv4 Address of iot.eclipse.org
BrokerName=137.135.83.217
BrokerPortNo=1883
BrokerSecurePortNo=8883

#
# When AggregatingGateway=YES or ClientAuthentication=YES,
# All clients must be specified by the ClientList File
#

ClientAuthentication=NO
AggregatingGateway=NO
QoS-1=NO
Forwarder=NO

#ClientsList=/path/to/your_clients.conf

PredefinedTopic=NO
#PredefinedTopicList=/path/to/your_predefinedTopic.conf

#RootCAfile=/etc/ssl/certs/ca-certificates.crt
#RootCApath=/etc/ssl/certs/
#CertsFile=/path/to/certKey.pem
#PrivateKey=/path/to/privateKey.pem

GatewayID=1
GatewayName=PahoGateway-01
KeepAlive=900
#LoginID=your_ID
#Password=your_Password

# UDP
GatewayPortNo=10000
MulticastIP=225.1.1.1
MulticastPortNo=1883

# GatewayUDP6Broadcast address is set to all Thread devices address
# in order to enable Thread Sleepy Devices to receive multicast messages
# sent from the gateway.
# UDP6
GatewayUDP6Port = 47193
GatewayUDP6Broadcast = ff33:40:fdde:ad00:beef:0:0:1
GatewayUDP6If = wpan0

# XBee
Baudrate=38400
SerialDevice=/dev/ttyUSB0
ApiMode=2

# LOG
ShearedMemory=YES;

&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Regards Maboo&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: MQTT-SN event: Retransmission retries limit has been reached</title><link>https://devzone.nordicsemi.com/thread/335134?ContentTypeID=1</link><pubDate>Wed, 20 Oct 2021 14:27:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:25dac51c-12d0-45ff-a298-d221db5a24f5</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi Maboo&lt;/p&gt;
&lt;p&gt;I do not think this is a property of the Thread network. The Border Router/Gateway should act as a FTD, and would in this case be the Thread Leader.&lt;/p&gt;
&lt;p&gt;It is possibly a bug in the Gateway/Border Router. &lt;br /&gt;Do you have access to debug logs from your Gateway?&lt;/p&gt;
&lt;p&gt;In the meantime, I will also try to replicate the problem.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>