DR Stagnant Despite Optimal Signal and ADR Status (ChirpStack v4)

Hello all,
I’m puzzled as to why the Data Rate (DR) didn’t increase. I’m currently using a Milesight AM103-AS923.
As shown in the screenshot, the sensor’s data interval is set at 10 minutes, while the expected uplink interval in the Device profile is 30 secs, Device-status request frequency is 30. The RSSI and SNR values for the sensor are excellent, and the ADR status is true.

Although the sensor has maintained this status for 2 days, the DR remains stagnant at 2, and the ADR functionality is still not operational.

Device Event log:

Sensor metrics

How is your regional .toml configured? I would start by verifying your ADR settings there.

Added to that, also inspect the LoRaWAN frames. It could be that ChirpStack does send mac-commands to your device as downlinks, but that your device does not ACK these.

Hi @bconway

Thanks for the reply,
Here’s the regional .toml file!

#File path: /chirpstack/configuration/region_as923.toml
# This file contains an example AS923 configuration.
[[regions]]
  # ID is an user-defined identifier for this region.
  id=“as923”
  # Description is a short description for this region.
  description=“AS923"
  # Common-name refers to the common-name of this region as defined by
  # the LoRa Alliance.
  common_name=“AS923”
  # Gateway configuration.
  [regions.gateway]
    # Force gateways as private.
    #
    # If enabled, gateways can only be used by devices under the same tenant.
    force_gws_private=false
    # Gateway backend configuration.
    [regions.gateway.backend]
      # The enabled backend type.
      enabled=“mqtt”
      # MQTT configuration.
      [regions.gateway.backend.mqtt]
        # Topic prefix.
        #
        # The topic prefix can be used to define the region of the gateway.
        # Note, there is no need to add a trailing ‘/’ to the prefix. The trailing
        # ‘/’ is automatically added to the prefix if it is configured.
        topic_prefix=“as923”
        # MQTT server (e.g. scheme://host:port where scheme is tcp, ssl or ws)
        server=“$MQTT_BROKER_ENDPOINT”
        # Connect with the given username (optional)
        username=“”
        # Connect with the given password (optional)
        password=“”
        # Quality of service level
        #
        # 0: at most once
        # 1: at least once
        # 2: exactly once
        #
        # Note: an increase of this value will decrease the performance.
        # For more information: https://www.hivemq.com/blog/mqtt-essentials-part-6-mqtt-quality-of-service-levels
        qos=0
        # Clean session
        #
        # Set the “clean session” flag in the connect message when this client
        # connects to an MQTT broker. By setting this flag you are indicating
        # that no messages saved by the broker for this client should be delivered.
        clean_session=false
        # Client ID
        #
        # Set the client id to be used by this client when connecting to the MQTT
        # broker. A client id must be no longer than 23 characters. If left blank,
        # a random id will be generated by ChirpStack.
        client_id=“”
        # Keep alive interval.
        #
        # This defines the maximum time that that should pass without communication
        # between the client and server.
        keep_alive_interval=“30s”
        # CA certificate file (optional)
        #
        # Use this when setting up a secure connection (when server uses ssl://...)
        # but the certificate used by the server is not trusted by any CA certificate
        # on the server (e.g. when self generated).
        ca_cert=“/etc/chirpstack/certs/iot-core/prd/ca.cert”
        # TLS certificate file (optional)
        tls_cert=“/etc/chirpstack/certs/iot-core/prd/tls.cert”
        # TLS key file (optional)
        tls_key=“/etc/chirpstack/certs/iot-core/prd/tls.private.key”
    # Gateway channel configuration.
    #
    # Note: this configuration is only used in case the gateway is using the
    # ChirpStack Concentratord daemon. In any other case, this configuration
    # is ignored.
    [[regions.gateway.channels]]
      frequency=923200000
      bandwidth=125000
      modulation=“LORA”
      spreading_factors=[7, 8, 9, 10, 11, 12]
    [[regions.gateway.channels]]
      frequency=923400000
      bandwidth=125000
      modulation=“LORA”
      spreading_factors=[7, 8, 9, 10, 11, 12]
  # Region specific network configuration.
  [regions.network]
    # Installation margin (dB) used by the ADR engine.
    #
    # A higher number means that the network-server will keep more margin,
    # resulting in a lower data-rate but decreasing the chance that the
    # device gets disconnected because it is unable to reach one of the
    # surrounded gateways.
    installation_margin=10
    # RX window (Class-A).
    #
    # Set this to:
    # 0: RX1 / RX2
    # 1: RX1 only
    # 2: RX2 only
    rx_window=0
    # RX1 delay (1 - 15 seconds).
    rx1_delay=1
    # RX1 data-rate offset
    rx1_dr_offset=0
    # RX2 data-rate
    rx2_dr=2
    # RX2 frequency (Hz)
    rx2_frequency=923200000
    # Prefer RX2 on RX1 data-rate less than.
    #
    # Prefer RX2 over RX1 based on the RX1 data-rate. When the RX1 data-rate
    # is smaller than the configured value, then the Network Server will
    # first try to schedule the downlink for RX2, failing that (e.g. the gateway
    # has already a payload scheduled at the RX2 timing) it will try RX1.
    rx2_prefer_on_rx1_dr_lt=0
    # Prefer RX2 on link budget.
    #
    # When the link-budget is better for RX2 than for RX1, the Network Server will first
    # try to schedule the downlink in RX2, failing that it will try RX1.
    rx2_prefer_on_link_budget=false
    # Downlink TX Power (dBm)
    #
    # When set to -1, the downlink TX Power from the configured band will
    # be used.
    #
    # Please consult the LoRaWAN Regional Parameters and local regulations
    # for valid and legal options. Note that the configured TX Power must be
    # supported by your gateway(s).
    downlink_tx_power=-1
    # ADR is disabled.
    adr_disabled=false
    # Minimum data-rate.
    min_dr=0
    # Maximum data-rate.
    max_dr=5
    # Rejoin-request configuration (LoRaWAN 1.1)
    [regions.network.rejoin_request]
      # Request devices to periodically send rejoin-requests.
      enabled=false
      # The device must send a rejoin-request type 0 at least every 2^(max_count_n + 4)
      # uplink messages. Valid values are 0 to 15.
      max_count_n=0
      # The device must send a rejoin-request type 0 at least every 2^(max_time_n + 10)
      # seconds. Valid values are 0 to 15.
      #
      # 0  = roughly 17 minutes
      # 15 = about 1 year
      max_time_n=0
    # Class-B configuration.
    [regions.network.class_b]
      # Ping-slot data-rate.
      ping_slot_dr=3
      # Ping-slot frequency (Hz)
      #
      # set this to 0 to use the default frequency plan for the configured region
      # (which could be frequency hopping).
      ping_slot_frequency=0 (edited) ```

Hi @brocaar

Thank you for your reply as well.
I didn’t observe mac command LinkADRReq. Should I wait for longer? When will Chirpstack send the mac command LinkADRReq?

[
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                152,
                153,
                142,
                224
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 479,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 3,
                        "f_pending": false
                    },
                    "f_opts": [
                        {
                            "DevStatusAns": {
                                "battery": 246,
                                "margin": 7
                            }
                        }
                    ]
                },
                "frm_payload": "077d3502"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "NjDr5A==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:37:32.920401+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:37:32.975180450+00:00",
                "rssi": -29,
                "snr": 6.199999809265137,
                "uplinkId": 20177
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataDown",
                "major": "LoRaWANR1"
            },
            "mic": [
                50,
                176,
                98,
                221
            ],
            "payload": {
                "f_port": null,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 99,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 1,
                        "f_pending": false
                    },
                    "f_opts": [
                        "DevStatusReq"
                    ]
                },
                "frm_payload": null
            }
        },
        "tx_info": {
            "board": 262,
            "context": "NQrFjA==",
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "polarizationInversion": true,
                    "spreadingFactor": 10
                }
            },
            "power": 16,
            "timing": {
                "delay": {
                    "delay": "1s"
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                235,
                129,
                15,
                54
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 478,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d700046897"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "NQrFjA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:37:13.643012+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:37:13.695759987+00:00",
                "rssi": -33,
                "snr": 8.199999809265137,
                "uplinkId": 18897
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                112,
                17,
                208,
                182
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 477,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d3802"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "En7KzA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:27:34.044051+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:27:34.095281633+00:00",
                "rssi": -31,
                "snr": 10.199999809265137,
                "uplinkId": 36048
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataDown",
                "major": "LoRaWANR1"
            },
            "mic": [
                118,
                180,
                161,
                119
            ],
            "payload": {
                "f_port": null,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 98,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 3,
                        "f_pending": false
                    },
                    "f_opts": [
                        {
                            "LinkCheckAns": {
                                "gw_cnt": 1,
                                "margin": 23
                            }
                        }
                    ]
                },
                "frm_payload": null
            }
        },
        "tx_info": {
            "board": 262,
            "context": "EWwbZA==",
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "polarizationInversion": true,
                    "spreadingFactor": 10
                }
            },
            "power": 16,
            "timing": {
                "delay": {
                    "delay": "1s"
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                239,
                103,
                165,
                138
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 476,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 1,
                        "f_pending": false
                    },
                    "f_opts": [
                        "LinkCheckReq"
                    ]
                },
                "frm_payload": "0175610367d700046897"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "EWwbZA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:27:16.042287+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:27:16.094757114+00:00",
                "rssi": -30,
                "snr": 8.199999809265137,
                "uplinkId": 34000
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                136,
                61,
                169,
                201
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 475,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d4602"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "7s4yfA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:17:35.268047+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:17:35.319821606+00:00",
                "rssi": -31,
                "snr": 9.5,
                "uplinkId": 976
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                253,
                22,
                116,
                81
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 474,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d800046897"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "7bxijA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:17:17.323483+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:17:17.383156297+00:00",
                "rssi": -32,
                "snr": 8,
                "uplinkId": 65231
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                216,
                98,
                17,
                248
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 473,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d4102"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "yvC+rA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:07:33.552260+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:07:33.595926081+00:00",
                "rssi": -32,
                "snr": 12.199999809265137,
                "uplinkId": 16079
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
]```
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                81,
                102,
                169,
                106
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 472,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d800046897"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "ydF6pA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T03:07:14.726011+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T03:07:14.776673766+00:00",
                "rssi": -35,
                "snr": 7.5,
                "uplinkId": 13007
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                95,
                37,
                81,
                143
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 471,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d2302"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "pzZXRA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:57:34.133459+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:57:34.166731549+00:00",
                "rssi": -34,
                "snr": 8,
                "uplinkId": 29646
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                64,
                205,
                234,
                178
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 470,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d800046897"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "pgTrBA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:57:14.117255+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:57:14.155351755+00:00",
                "rssi": -37,
                "snr": 8,
                "uplinkId": 28622
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                116,
                204,
                56,
                221
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 469,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 3,
                        "f_pending": false
                    },
                    "f_opts": [
                        {
                            "DevStatusAns": {
                                "battery": 246,
                                "margin": 6
                            }
                        }
                    ]
                },
                "frm_payload": "077d2302"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "g4L3zA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:47:35.175521+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:47:35.233907244+00:00",
                "rssi": -31,
                "snr": 7.800000190734863,
                "uplinkId": 36045
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataDown",
                "major": "LoRaWANR1"
            },
            "mic": [
                71,
                6,
                69,
                202
            ],
            "payload": {
                "f_port": null,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 97,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 4,
                        "f_pending": false
                    },
                    "f_opts": [
                        {
                            "LinkCheckAns": {
                                "gw_cnt": 1,
                                "margin": 27
                            }
                        },
                        "DevStatusReq"
                    ]
                },
                "frm_payload": null
            }
        },
        "tx_info": {
            "board": 263,
            "context": "gmczbA==",
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "polarizationInversion": true,
                    "spreadingFactor": 10
                }
            },
            "power": 16,
            "timing": {
                "delay": {
                    "delay": "1s"
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                232,
                189,
                39,
                203
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 468,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 1,
                        "f_pending": false
                    },
                    "f_opts": [
                        "LinkCheckReq"
                    ]
                },
                "frm_payload": "0175610367d800046898"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "gmczbA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:47:16.578565+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:47:16.734126508+00:00",
                "rssi": -32,
                "snr": 12.800000190734863,
                "uplinkId": 33229
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                245,
                17,
                99,
                218
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 467,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d4202"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "X6ev1A==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:37:33.602352+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:37:33.654466927+00:00",
                "rssi": -31,
                "snr": 11.800000190734863,
                "uplinkId": 60876
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                230,
                206,
                120,
                134
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 466,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d700046898"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "XoELVA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:37:14.292670+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:37:14.334299643+00:00",
                "rssi": -32,
                "snr": 10.199999809265137,
                "uplinkId": 59340
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                222,
                119,
                220,
                68
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 465,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d2602"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "O/O87A==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:27:34.606906+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:27:34.655457500+00:00",
                "rssi": -31,
                "snr": 7.199999809265137,
                "uplinkId": 24012
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                244,
                84,
                143,
                188
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 464,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d600046898"
            }
        },
        "rx_info": [
            {
                "board": 262,
                "channel": 6,
                "context": "OtjW5A==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:27:16.066871+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:27:16.135807545+00:00",
                "rssi": -30,
                "snr": 7.5,
                "uplinkId": 22988
            }
        ],
        "tx_info": {
            "frequency": 923200000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                207,
                212,
                4,
                136
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 463,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "077d3202"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "GBqy3A==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:17:33.180753+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:17:33.276292624+00:00",
                "rssi": -31,
                "snr": 11.800000190734863,
                "uplinkId": 59595
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    },
    {
        "phy_payload": {
            "mhdr": {
                "m_type": "UnconfirmedDataUp",
                "major": "LoRaWANR1"
            },
            "mic": [
                53,
                119,
                51,
                247
            ],
            "payload": {
                "f_port": 85,
                "fhdr": {
                    "devaddr": "01c2accf",
                    "f_cnt": 462,
                    "f_ctrl": {
                        "ack": false,
                        "adr": true,
                        "adr_ack_req": false,
                        "class_b": false,
                        "f_opts_len": 0,
                        "f_pending": false
                    },
                    "f_opts": []
                },
                "frm_payload": "0175610367d700046897"
            }
        },
        "rx_info": [
            {
                "board": 263,
                "channel": 7,
                "context": "FujPdA==",
                "crcStatus": "CRC_OK",
                "gatewayId": "7076ff0066******",
                "gwTime": "2024-02-29T02:17:13.134076+00:00",
                "location": {},
                "metadata": {
                    "region_common_name": "AS923",
                    "region_config_id": "as923"
                },
                "nsTime": "2024-02-29T02:17:13.175045389+00:00",
                "rssi": -31,
                "snr": 12,
                "uplinkId": 58315
            }
        ],
        "tx_info": {
            "frequency": 923400000,
            "modulation": {
                "lora": {
                    "bandwidth": 125000,
                    "codeRate": "CR_4_5",
                    "spreadingFactor": 10
                }
            }
        }
    }



Thanks!

Hi @brocaar @bconway,

Do you have any insights on this matter? I’ve reviewed all the settings, and they are normal. Because I have 10 tenants under my ChirpStack, only one is experiencing this particular issue.

Thanks!