Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Download the correct version of the ONVIF Uplink Gateway package from here.

Table of Contents

Windows

  1. Install WSL2 on your Windows device: https://learn.microsoft.com/en-us/windows/wsl/install

  2. Download the windows gateway package.

  3. Copy and extract the contents to the Linux home directory.
    The directory should be reachable from your file explorer.
    Example: <linux-folder>/ubuntu/home/<user>

  4. Open your Linux terminal. The default terminal is Ubuntu.

  5. Make sure your Ubuntu is up to date.

    Code Block
    sudo apt-get update
  6. Execute the docker install script.

    Code Block
    ./docker_install.sh
  7. Once docker is installed you can now run the Gateway using the start script.

    Code Block
    ./start.sh
    
  8. The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000

Linux

  1. Unzip the package

  2. If you do not already have Docker installed on your system, then execute the docker install script.

    Code Block
    ./docker_install.sh
  3. Once Docker and Docker Compose are successfully installed on the device. Start the Gateway by executing the start script.

    Code Block
    ./start.sh
  4. The Gateway should now be accessible from the address localhost:8000 or <device-ip>:8000

Adding Gateway to the Cloud

  1. Navigate to 127.0.0.1:8000 or <device-ip>:8000 and copy the device’s UUID.

...

  1. Add the Gateway to the Cloud VMS platform using the UUID.

...

Adding Cameras

  1. Add Uplink camera to the Cloud VMS platform using the camera’s Serial Number and MAC Address.

  2. Add camera to Gateway using the same information.

  3. Navigate to Gateway main page and click start on the corresponding camera in the cameras list.

  4. The camera should now be online on Cloud VMS platform.

How to Stop Gateway

  1. Execute the stop script.

    Code Block
    ./stop.sh

How to Upgrade Gateway

  1. Ensure that the old version of Gateway is running.

  2. Navigate to the extracted folder of the new version of the Gateway.

  3. Execute the script update.sh by providing the old Gateway directory and new Gateway directory.

    Code Block
    ./update.sh -orig <path_to_old_version_directory> -dest <path_to_new_version_directory>