You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Valid for N670 / N870 / N870E but not supported by N610. Software 2.52 or higher is needed.

The system can inform the Alarm (MQTT) server in case of:

  • DECT Manager and or DECT Base - Push notification
    • Single DECT base up/down
    • Single DECT manager up/down
  • DECT Manager and or DECT Base - Status information
    • Status of DECT base stations up/down
    • Status of DECT managers up/down
  • DECT Handset - Push notification
    • In/out of charger
    • Battery level
  1. DECT Manager and or DECT Base - Push notification
  2. How to subscribe for notifications

1. DECT Manager and or DECT Base - Push notification

Scroll to top


By default, the system will notify the Alarm server if an DECT Manager and/or DECT base is down after 9 minutes outage. This value can be changed via auto-provisioning.


Example of xml file which changes DropoutNotificationTimeout to 60 seconds.
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
   <nvm>
      <param name="AmlGlobal.0.DropoutNotificationTimeout" value="60"/>
   </nvm>
</provisioning>
To disable functionality DropoutNotificationTimeout needs to be set to value 0.
<?xml version="1.0" encoding="UTF-8"?>
<provisioning version="1.1" productID="e2">
   <nvm>
      <param name="AmlGlobal.0.DropoutNotificationTimeout" value="0"/>
   </nvm>
</provisioning>

1. How to subscribe for notifications

Scroll to top


If you want to receive this information, the alarm server need to subscribe on the MQTT topic.


Example of subscription for any notification.

mosquitto_sub -v -t '#' -u "as1" -P "as1" --psk-identity as1 --psk password -p 8884 -h ip_address


Example of subscription for notification regarding status of base stations

mosquitto_sub -v -t 'xxl/as-agent/system/as-agent/noti/bsStatus' -u "as1" -P "as1" --psk-identity as1 --psk password -p 8884 -h ip_address


Example of subscription for notification regarding status of dect managers

mosquitto_sub -v -t 'xxl/as-agent/system/as-agent/noti/dmStatus' -u "as1" -P "as1" --psk-identity as1 --psk password -p 8884 -h ip_address


Example of subscription for notification regarding the handset status

mosquitto_sub -v -t '+/+/as/hs/noti/hs_status' -u "as1" -P "as1" --psk-identity as1 --psk password -p 8884 -h ip_address


Where:

-u user needs to be added to external client list (webui settings/online-services/application-servers)

--psk is external client password

-p is psk port

-h is ip address of the device

If the AML server subscribes on the required topic, the system will answer with the status Nx70 Base 589ec60d90ca Base 7c2f80c6e5c2 Base 7c2f80f68993 MQTT AML server Base 589ec60d90ca Base 7c2f80c6e5c2 Base 7c2f80f68993 MQTT AML server Example: Subscribe to base station status MQTT subscribe xxl/as-agent/system/as-agent/noti/bsStatus "{"payload":[{"id":"589ec60d90ca","name":"Office","status":"up"},{"id":"7c2f80c6e5c2","name":"LocalBS","status":"up"},{"id":"7c2f80f68993","name":"Reception","status":"up"}]}"


  • No labels