Preparing your Quanergy system for integration with Security Center - Restricted Security Area Surveillance

RSA Surveillance Integration Guide for Quanergy Lidar Systems

Product
Restricted Security Area Surveillance
Content type
Guides > Integration guides
Guides > Plugin and extension guides
Language
English
Last updated
2024-02-12

To prepare your Quanergy devices for integration with Security Center, you must configure the Quanergy system to communicate with the Genetecâ„¢ Restricted Security Area Surveillance (RSA Surveillance) plugin. For specific details about configuring your devices and software, refer to the Quanergy documentation.

Before you begin

  • Make sure that your Quanergy system is operating as per the manufacturer's specifications.
  • Make sure that your Quanergy devices and software are compatible with the RSA Surveillance plugin. For the latest compatibility information, see Supported plugins in Security Center on the Genetec TechDoc Hub.
NOTE: These preparatory steps are for Quanergy M8 devices. If you are using a Quanergy M1 Edge device, see Preparing your Quanergy M1 Edge lidar system for integration with Security Center.

What you should know

Procedure

  1. On the QORTEX server, in the settings.xml file, enable the following publishers:
    • QTRACK_OBJECT_LIST
    • SENSOR_HEALTH_STATE
    • QORTEX1_ZONE_LIST

    This is done by setting <Format> to json or xml, <AddDataSize> to true, and <NetworkByteOrder> to false. <Port> must be set to 17161, 17168, and 17172 respectively.

    Example:

    Code
    <Publisher>
        <Name>QTRACK_OBJECT_LIST</Name>
        <Format>json</Format>
        <Port>17161</Port>
        <AddDataSize>true</AddDataSize>
        <NetworkByOrder>false</NetworkByOrder>
    </Publisher>
    <Publisher>
        <Name>SENSOR_HEALTH_STATE</Name>
        <Format>json</Format>
        <Port>17168</Port>
        <AddDataSize>true</AddDataSize>
        <NetworkByOrder>false</NetworkByOrder>
    </Publisher>
    <Publisher>
        <Name>QORTEX1_ZONE_LIST</Name>
        <Format>json</Format>
        <Port>17172</Port>
        <AddDataSize>true</AddDataSize>
        <NetworkByOrder>false</NetworkByOrder>
    </Publisher>
    NOTE: RSA Surveillance plugin does not support Protocol Buffers (Protobuf) serialization.
  2. Restart the QORTEX server.
    This can be done by running the following commands on the Linux machine:
    Code
    sudo systemctl stop qortex-server.service
    sudo systemctl start qortex-server.service