...
...
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
- Login to the gatewat and get to the Linux Shell. Go to root mode (sudo su).
Modify the /etc/sysctl.conf file:
Edit the sysctl.conf
Code Block language bash root@user-desktop:/home/user# vi /etc/sysctl.conf
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
...