Quantcast
Channel: MultiTech Developer Resources » All Posts
Viewing all articles
Browse latest Browse all 7111

Reply To: private network with 2 gw

$
0
0

You could implement a blacklist using an application

In node-red use MQTT in and out nodes with a function node between.
This code will clear the join accept packet out of the downlink queue.


if (msg.topic.search("<BLACK-LISTED-EUI>")) {
    msg.topic = msg.topic.replace("joined", "clear");
    return msg;
} else {
    return null;
}

Viewing all articles
Browse latest Browse all 7111

Trending Articles