Difference between revisions of "Bridge v.2"

From vCloud.ai Documentation
Jump to navigation Jump to search
(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: nano /etc/network/interfaces <br>
1. Open the Network Interface file for editing by this command:  
2. Replace the default settings with the following: <br>
 
source /etc/network/interfaces.d/*<br>
nano /etc/network/interfaces  
# Network is managed by Network manager<br>
auto lo<br>
iface lo inet loopback<br>
<br>
<br>
# The primary network interface<br>
2. Replace the default settings with the following: <blockquote>source /etc/network/interfaces.d/*
# allow-hotplug eth0<br>
 
# iface eth0 inet dhcp<br>
# Network is managed by Network manager
<br>
 
# Static IP address<br>
auto lo
auto eth0      # ou auto enp0s7 (see  ifconfig)<br>
 
iface eth0 inet static<br>
iface lo inet loopback
        address 192.168.1.55<br>
 
        netmask 255.255.255.0<br>
# The primary network interface
        gateway 192.168.1.1<br>
 
# 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 14: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/*

  1. Network is managed by Network manager

auto lo

iface lo inet loopback

  1. The primary network interface
  1. allow-hotplug eth0
  1. iface eth0 inet dhcp
  1. 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