Difference between revisions of "Bridge v.2"
(Created page with "<strong>vCloud.ai Bridge v.2</strong> == Purpose <br> == Bridge v.2 is a software application for microcomputers that does the following: <br> - Searches for IP cameras in local network<br> - Adds cameras to vCloud.ai VSaaS user account<br> - Can generate direct RTSP links for cameras<br> == Requirements <br> == Bridge v.2 (codename Finder) can be installed on the following platforms: - Orange Pi Zero and above <br> - Raspberry Pi 3 and above <br> - Intel Atom based...") |
|||
Line 23: | Line 23: | ||
== Setting a static IP address<br> == | == Setting a static IP address<br> == | ||
The Bridge v.2 software allows for changing the IP address from it's web interface, however you need to assign a static IP to your device as follows:<br> | The Bridge v.2 software allows for changing the IP address from it's web interface, however you need to assign a static IP to your device as follows:<br> | ||
1. Open the Network Interface file for editing by this command: | 1. Open the Network Interface file for editing by this command: | ||
nano /etc/network/interfaces | |||
<br> | <br> | ||
# The primary network interface | 2. Replace the default settings with the following: <blockquote>source /etc/network/interfaces.d/* | ||
# allow-hotplug eth0 | |||
# iface eth0 inet dhcp | # Network is managed by Network manager | ||
# Static IP address | auto lo | ||
auto | |||
iface eth0 inet static | iface lo inet loopback | ||
# The primary network interface | |||
# allow-hotplug eth0 | |||
# iface eth0 inet dhcp | |||
# Static IP address | |||
auto eth0 # ou auto enp0s7 (see ifconfig) | |||
iface eth0 inet static | |||
address 192.168.1.55 | |||
netmask 255.255.255.0 | |||
gateway 192.168.1.1</blockquote> |
Revision as of 13:06, 28 October 2022
vCloud.ai Bridge v.2
Purpose
Bridge v.2 is a software application for microcomputers that does the following:
- Searches for IP cameras in local network
- Adds cameras to vCloud.ai VSaaS user account
- Can generate direct RTSP links for cameras
Requirements
Bridge v.2 (codename Finder) can be installed on the following platforms:
- Orange Pi Zero and above
- Raspberry Pi 3 and above
- Intel Atom based microcomputers
- other ARM and x86 architecture computers with Linux
Installation
1. Download the lates software installer from https://vcloud.ai/downloads page
2. Copy the installation package on the destination computer
3. Unzip the installer
4. Run install.sh (./install.sh) under root user account
5. Open a web browser and go to the IP address of the bridge
Setting a static IP address
The Bridge v.2 software allows for changing the IP address from it's web interface, however you need to assign a static IP to your device as follows:
1. Open the Network Interface file for editing by this command:
nano /etc/network/interfaces
2. Replace the default settings with the following:
source /etc/network/interfaces.d/*
- Network is managed by Network manager
auto lo
iface lo inet loopback
- The primary network interface
- allow-hotplug eth0
- iface eth0 inet dhcp
- Static IP address
auto eth0 # ou auto enp0s7 (see ifconfig)
iface eth0 inet static
address 192.168.1.55
netmask 255.255.255.0
gateway 192.168.1.1