Versions Compared

Key

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

...

...


Warning

Camera support has been dropped as EoL with Site Controller version 3.0


IP cameras are configured using the web interface. In some cases it may be necessary to access remotely the cameras, through an OpenVPN connection installed on a gateway running Ubuntu 16.06. This article will describe how to configure the Ubuntu Gateway so all the necessary ports are forwarded (NAT) to the camera and the camera's web interface can be reached through the VPN

Step-by-step guide

    1. Login to the gatewat and get to the Linux Shell. Go to root mode (sudo su).
    2. Modify the /etc/sysctl.conf file:

      1. Edit the sysctl.conf 

        Code Block
        languagebash
        root@user-desktop:/home/user# vi /etc/sysctl.conf


      2. Add or uncomment this parameter 

        Code Block
        net.ipv4.ip_forward=1 


        Info

        This change will come into effect after the next reboot. To make it have immediate effect execute this command:

        Code Block
        sysctl -w net.ipv4.ip_forward=1



...