Personal Cloud Ftp

broken image
How to Use Download Manager with Your Personal Cloud or Personal Cloud 2-Bay; Using network devices without a DHCP router; Using FTP to Access Your Personal Cloud; FAQs Will my Seagate drive work with macOS 10.12 (Sierra)? Will my Seagate drive work with Windows 10? Will my Seagate drive work with Mac 10.11 (El Capitan)?
Free Cloud Ftp
Personal Cloud For Photo Organization
Personal Cloud Ftp Software
Personal Cloud For Iphone
How To Set Up Private Cloud Storage Using a Windows 10 FTP Site To build your own cloud server in Windows would normally require an upfront investment. To start, youd need a storage system and a minimum of 100Mbps fixed broadband connection. This speed is recommended so that the cloud server can be easily accessed from anywhere.
This allows the Seagate Personal Cloud 2-Bay NAS device to mirror the files from one hard drive to a second one, securing your files in case one of those drives fails. FTP server, backup.
Curious 'what is cloud storage?' Let pCloud teach you all about cloud storage! Check out our comprehensive database of cloud storage information!
Cloud computing services have become widely used, ranging from cloud storage services, like Dropbox and iCloud, to productivity suites, like G Suite and Office 365. These services offer the ability to sync documents across devices and to use professional software from any web browser or mobile device. As cloud computing matures, an increasingly popular solution is for users to operate a personal cloud server.
In these instructions, we create a cloud storage service you control using the open-source software, Nextcloud. We create a local test server, limited to operating in your local network. Then we install the Nextcloud client on your desktop computer and mobile device, and synchronize files between them. Then we show how you can run this same general configuration on a remote hosting service, so you can access your cloud from anywhere.
Creating a local Nextcloud server.
How to use Nextcloud.
Running Nextcloud on the Internet.
General Nextcloud tips. About Nextcloud
Nextcloud is a cloud storage server designed to scale to hundreds of thousands of users. You can run the client software on Windows, macOS, Linux, Android, and iOS, syncing files to multiple devices.
You can also access your files on the web by logging in to your Nextcloud web portal. The portal features an Administrator Control Panel , where you can add users, configure group permissions, and set individual disk quotas. The portal also uses a plugin system to provide additional features, such as real-timechat and video conferencing for you and your other users.
To learn more about Nextcloud, visit the official website at https://nextcloud.com. Creating a local Nextcloud server Note
If you want to skip the local installation and install Nextcloud on a web hosting service with a domain name, proceed to running Nextcloud on the Internet.
In this section, we create a Nextcloud server on your local network. The cloud service is only available to devices connected to your network. This setup lets you try out Nextcloud in the security of your local network, without spending any money on a domain name or a remote web hosting service.
You could run the server on a dedicated computer, but for testing, it's easier to install it on a VM (virtual machine), which you can run on your primary computer. Your computer requires the following resources:
A 64-bit CPU with a 64-bit operating system. If you're not sure, see: How to determine if you have a 32-bit or 64-bit CPU.
An Internet connection.
10 GB of free disk space.
At least 1 GB of RAM to dedicate to the VM. Download Ubuntu 18 Server
Nextcloud requires a server running Linux. The recommended Linux OS for Nextcloud is Ubuntu Server, so that's what we use in this example.
Ubuntu is free to download and use. Download Ubuntu Server 18.04 from http://releases.ubuntu.com/18.04.2/ubuntu-18.04.2-live-server-amd64.iso. It's a large file, at about 2 GB. Install VirtualBox and create a VM
In this example, we use Oracle VM VirtualBox to create and run our VM. VirtualBox is free of charge for personal use.
In a browser, go to https://www.virtualbox.org/wiki/Downloads. Click Windows hosts to download the installer for Windows.
Run the installer using the default installation options. When the installation is complete, run VirtualBox.
In VirtualBox, click New to create a new virtual machine.
Name the VM. The name can be anything, but it should contain the word Ubuntu . Make sure 'Type' is set to Linux and 'Version' is set to Ubuntu (64-bit) . Click Next .
Set the 'Memory size' to 1024 MB (1 GB). Click Next .
For 'Hard disk,' choose Create a virtual hard disk now and then click Create .
For 'Hard disk file type,' choose VDI . Click Next .
For 'Storage on physical hard disk,' choose Dynamically allocated .
For 'File location and size,' choose a disk size of 10 GB . (You can choose a larger size if you'd like.) Click Create .
Configure the network adapter, so it's part of your local network. With your VM highlighted on the left, click Settings .
On the left, click Network . On the right, under 'Attached to,' select Bridged adapter . Click OK .
The VM is ready to go. Click Start .
At 'Select start-up disk,' click the folder icon, and choose the Ubuntu ISO you downloaded. If it's still downloading, wait until the download is complete. Click Start .
The Ubuntu Server ISO boots. Your virtual machine is up and running. Install Ubuntu Server on your VM
Your VM boots into the Ubuntu Server live ISO, which contains the Ubuntu installer. Note
When you click inside the VM window, it captures your mouse and keyboard. Your mouse cursor will disappear, and you may not be able to use Windows shortcuts such as Alt + Tab . You can release the keyboard and mouse by pressing the VirtualBox 'Host Key,' which is the right Ctrl key on your keyboard. To continue using the VM, click inside its window again. Note
The installer interface is text-only. In the following steps, use the up, down, and Tab keys to change the highlighted option, the spacebar to toggle a check box, and Enter to make a selection.
Set your keyboard type. If you're using a standard US keyboard, press Enter .
Choose Install Ubuntu and press Enter .
Under 'Network connections,' choose the network adapter that Ubuntu should use. In this example, we want it to use our Ethernet connection (eth). Choose Done and press Enter .
At 'Configure proxy,' press Enter .
At 'Configure Ubuntu archive mirror,' press Enter .
Under 'Filesystem setup,' choose the default, Use an Entire Disk . Press Enter .
The 10 GB VirtualBox VDI is the only disk. At 'Choose the disk to install to,' press Enter .
Review the summarized information, then choose Done and press Enter .
Under 'Confirm destructive action,' choose Continue and press Enter .
Under 'Profile setup,' create a new user profile. The new profile is also the default Ubuntu administrator account. 'Your name' can be anything you like. For 'Your server's name,' enter a hostname for your computer (using only numbers, lowercase letters, dashes, and underscores), such as nextcloud . For 'username,' choose the name you want to use to log in to the computer (using lowercase letters and no spaces). Choose a password, and enter it again to verify. Choose Done and press Enter .
Under 'SSH setup,' select the box marked Install OpenSSH server . An SSH allows you to remotely connect to the machine if necessary. Choose Done and press Enter .
Under 'Featured Server Snaps,' choose Nextcloud . Choose Done and press Enter .
The installation process continues. When it's done, choose Reboot now to boot the installed operating system. Configure Ubuntu and install Nextcloud server
When the server boots, log in with the name and password you chose during Ubuntu profile setup. Note
You might notice that the login prompt gets mixed up with other system messages. If you don't see the login prompt, press Enter to display a new one.
Perform an initial system update. Run sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade . Enter your password when prompted. If you're asked to confirm an upgrade, type y , and press Enter .
Add a firewall rule to allow OpenSSH connections. Run sudo ufw allow OpenSSH .
Run sudo ufw enable to enable the firewall.
Run sudo ufw status to verify that the firewall is filtering the server's network traffic.
Start the Nextcloud installer. Run sudo nextcloud.manual-install user pass . For user and pass , choose the name and password you want to use with your Nextcloud account. It can be different than your Ubuntu name and password. This account is the Nextcloud administrator account.
After a few moments, you see:
Next, open ports 80 (HTTP) and 443 (HTTPS) in your firewall. Run sudo ufw allow 80,443/tcp .
Nextcloud maintains an internal list of trusted domains . Only requests addressed to these domains get a response from the Nextcloud server. By default, the only trusted domain is localhost (the server can only respond to itself). To view the trusted domains, run sudo nextcloud.occ config:system:get trusted_domains .
You need to add your server's IP address to the trusted domain list. First, determine your server's IP address. Run ip a grep inet to find the IP address of the server on your local network. If you are on an IPv4 network, it should start with 192.168 or 10.0 .
Here, our address is 192.168.1.173 . Now, set this address as a trusted domain. Run sudo nextcloud.occ config:system:set trusted_domains 1 --value= domain , where the domain is the IP address of your server.
Create an SSL certificate so that Nextcloud can encrypt your data over HTTPS. Because this cloud is restricted to your home network, you can use a self-signed certificate. Run sudo nextcloud.enable-https self-signed .
Server configuration is complete, and your cloud is operational. The Nextcloud service is running, and your server is listening on your local network for HTTP and HTTPS connection requests. Log in to Nextcloud
To log in to your Nextcloud web dashboard, you need to add a security exception to your browser, so it accepts your self-signed SSL certificate. Normally, you would never want to create an exception like this, unless you control the server and network. (This step is not required if you're running Nextcloud on the Internet, in which case it uses Let's Encrypt to provide SSL certificates.)
In a browser, go to the address of your Nextcloud server. In this example, the address is 192.168.1.173 .
Your web browser will warn you that the SSL certificate is self-signed. In Chrome, click Advanced , then Proceed to .
If you're using Firefox, click Advanced , Add Exception , Confirm Security Exception .
Enter your Nextcloud username and password, as you configured them when installing Nextcloud. Click Log in .
In the Nextcloud dashboard, you can view and work with the files you've stored in the cloud. If you click the gear icon (), you can access Administrator settings and customize your server preferences. No configuration is necessary to begin using Nextcloud, so we won't change anything now. For a detailed guide to Nextcloud preferences, see https://docs.nextcloud.com/server/15/user_manual/userpreferences.html. How to use Nextcloud
Your server is running, and now it needs clients. In these steps, you'll install the Nextcloud client on your desktop computer, and on a smartphone. Install Nextcloud client on your desktop computer
In a browser, go to https://nextcloud.com/install/. Click Download for desktop .
Click Windows . The installer downloads.
Run the installer, leaving all options at the defaults. When the installation is complete, check Run Nextcloud , and click Finish .
At the Nextcloud Connection Wizard, click Log in .
For Server Address , enter the IP address of your server.
You are notified that the server certificate is untrusted (because it is self-signed). Check the box labeled Trust this certificate anyway . Click OK .
Click Log in .
Enter the name and password you chose when installing Nextcloud. Click Log in .
Click Grant access .
At 'Setup local folder options,' click Connect .
Nextcloud starts its first sync, and downloads the default 'Welcome to Nextcloud' files to your local folder.
When your local folder is in sync with the server, you'll see a white checkmark in a green circle. When a sync is in progress, this icon turns blue with a white arrows.
You'll also see the icon in your notification area. Click this icon to open the Nextcloud window. Right-click it for a menu of options, including Pause synchronization , Settings , and Quit .
Congratulations! You're now running a private cloud server, and syncing to a client. To access your local Nextcloud folder, open a File Explorer window (press Windows key + E ). On the left, click Nextcloud .
If you add files or folders here, they are automatically synced to the cloud, and to any other devices running the client. Install Nextcloud client on your mobile device Note
The screenshots in this section are on an Android device, but the steps are the same on iOS.
Install the Nextcloud app. On Android, use Google Play Store. On iOS, use the App Store.
Open the app, and tap Log in .
When prompted, allow access to files on your device.
For the server address, enter the IP address of your server.
Tap Yes to trust the self-signed certificate.
Tap Log in .
Enter the name and password you configured in installing Nextcloud and tap Log in .
Tap Grant access .
Nextcloud is now installed. However, no files are synced yet. On mobile, where storage is at a premium, the Nextcloud client will not sync anything to your device until you ask for it. To view what's available to sync from your Nextcloud, tap the main menu button ( ).
Choose All files .
Here, you see the files already on your Nextcloud server. To sync something to your device, tap the three dots ( ) next to the file or folder, and choose Sync .
To work with files that are synced to your device, open the main menu ( ) and choose On device .
To upload files from your device to Nextcloud, open the folder where you want to put the file, and tap the plus icon ( + ). Starting and stopping the VM
Your Nextcloud server is now available to any devices connected to your local network, as long as your VM is running. However, you will want to stop the server when you're done testing, or when you need to shut down or reboot your computer.
You can shut down your Ubuntu server from the Ubuntu Server command line by running sudo shutdown now . To start the server later, select the VM in your VirtualBox window, and click Start .
Alternatively, you can save the machine state. Saving state will freeze the VM and all its current memory contents, and resume from this point when you start it later. To save the state, hold down the right Ctrl key on your keyboard, and press Q key. Select Save the machine state , and click OK . Running Nextcloud on the Internet
If you want to access your cloud from anywhere, you can create this same setup on a remote host, such as Linode or DigitalOcean.
These steps require you own a domain name. Configure Nextcloud to use a subdomain of your existing domain, such as subdomain.mydomain.com .
In the following example, we set up Nextcloud on a Linode 'Nanode,' their minimal hosting option. As of March 2019, a Nanode offers 1 CPU, 1 GB RAM, and 25 GB SSD for your hosting instance, priced at $5/mo. Note
These steps also work on the equivalent $5/mo hosting option at DigitalOcean. Create an Ubuntu Nanode and configure your domain
Log in to your Linode account. Go to https://www.linode.com/, and click Log in . Enter your Linode name and password.
At the Linode dashboard, click Create , and choose Linode .
Under 'Create from image,' 'Public Images,' choose Ubuntu .
For 'Region,' choose the location that is geographically closest to your usage area.
For 'Linode Plan,' chose Nanode . (You can choose a more expensive hosting option if you prefer.)
For 'Root password,' set the Administrator password for your hosting instance. The first time you log in to the instance, you will log in as username root , and the password you set here.
Click Create .
Determine the IP address of your server. In the Linode dashboard, click Linodes on the left. On the right, you'll see the IPv4 and IPv6 address of your Nanode. Copy down the IPv4 address.
Log in to your domain name registrar account. Add a new DNS resource record to your domain name's DNS settings. (If you're not sure how to add a record to your domain name, check the documentation on your registrar's website.) Create a new Type A record. The Name of the record is the subdomain name. For example, you could name it nextcloud , mycloud , or anything else you like. (The name should contain only lowercase letters, numbers, dashes, or underscores, and no spaces). Set the Data entry of the record to the IP address of your Nanode, which you wrote down in the previous step. Configure Ubuntu, and install Nextcloud server
In your Linode dashboard, on the left, click Linodes . Under your new Nanode, click Launch Console .
If necessary, press Enter to get a login prompt. For the user, enter root . For password, enter the root password you configured when creating the Nanode.
Update the system. Note
If you are prompted about updating your GRUB configuration, choose to keep the currently installed GRUB configuration .
Create a regular system user, so you can log in as someone other than root. Run the adduser command. The username can be anything you like (lowercase letters, numbers, dashes, and underscores, no spaces). Enter a password, then enter it again to verify it. The rest of the information can be left blank. When prompted, type y and press Enter to create the user.
Next, run usermod to add this user to the 'sudo' group, so you can run administrator commands without logging in to the root account.
Your regular user can now run commands with sudo. Log out of the root account.
Log in again, with the regular user's name and password.
Run the following command to check if the snap package manager is installed, and if not, install it.
Install the Nextcloud server snap package. When prompted, enter the regular user's password.
Install the Nextcloud server. For newuser and newpass , enter a new username and password for the Nextcloud administrator account. (You use these to log in to the Nextcloud client apps and web portal.)
Configure the firewall to allow OpenSSH, HTTP, and HTTPS connections, then enable the firewall.
Set your subdomain as a Nextcloud trusted domain. Only requests made to this domain name will receive a response from Nextcloud. In the next command, replace subdomain.mydomain.com with your subdomain name.
Enable HTTPS using Let's Encrypt. This step automatically creates an SSL certificate for you, that needs to be renewed (for free) every 90 days. Free Cloud Ftp
Verify you meet the requirements, then type y to continue.
At 'Enter an e-mail address,' enter an e-mail address where Let's Encrypt can notify you about certificate renewal.
At 'Enter your domain name(s),' enter your subdomain name, for example, subdomain.mydomain.com .
Your Nextcloud is now running on the Internet. You can use it as described in the section how to use Nextcloud, but instead of a local IP address, use your subdomain name.
If you enter your subdomain name in a web browser, you can log in to the Nextcloud web portal with your Nextcloud administrator username and password. When installing the Nextcloud client, use your subdomain name as the Nextcloud server address.
Best of all, you don't need to add any trust exceptions to your browser or client, because Let's Encrypt certificates are registered with a trusted certificate authority. General Nextcloud tips Saving big files
If you're working with a big file and saving it frequently, Nextcloud might have trouble syncing it. This problem arises when you make changes to the file faster than it can be uploaded to the server. If you encounter this problem, wait until the Nextcloud icon in your notification area turns green before saving your document again. Or, right-click the Nextcloud icon and choose Pause synchronization . When you're ready, right-click the icon and choose Resume synchronization to upload your changes to Nextcloud. Resolving conflicts
If changes are made to a file on two separate devices, either at the same time or while one device is not running the Nextcloud client, conflicts may arise. The conflict occurs when you try to sync both versions of the file.
If the Nextcloud server isn't sure which version of the file you want to keep, it will keep them both, and display a warning in the client window. Sony sound forge pro 11 keygen . The Nextcloud icon changes to a yellow circle with an exclamation mark.
Click the yellow message bar to view the activity log, and find out which files are having a conflict.
The conflicting file will be renamed to include 'conflicted copy' and the date. You can open both versions of the file and compare them, to figure out which one you want to keep.
To resolve the conflict, move the conflicted copy to a location outside of your Nextcloud folder, such as your desktop. Or, if you're sure, you can delete it.
When your Nextcloud folder contains no files with 'conflicted copy' in their file name, the conflict is resolved. If your icon doesn't turn green right away, you can force a new sync, which will re-check the files in your local Nextcloud. In your client window, click the button with three dots ( ) to the right of your main Nextcloud folder, and choose Force sync now .
When the icon changes back to the green checkmark, your files are in sync again. Additional information
Cloud storage has become increasing popular the last few years for storage solution needs that arise in companies. It has also become very popular as a solution for off-site storage and backup of footage from IP cameras and IP camera systems that need lots of storage space, as recording in HD resolution is very memory intensive. HD video uploads require a high bandwidth and immense amounts of hard drive space. As security camera video quality keeps getting better with the advent of higher resolution CMOS image sensors, this only adds to the need for more storage space .
Cloud storage provides convenience and an extra level of security by allowing off-site backup of your data. In the event of catastrophes like fires or theft, your data will still be accessible from anywhere with cloud storage. This is one of the best ways of storing or backing up your sensitive and important data as the storage is offsite, stored on hard drives that are redundant, supported by companies with a lot of resources like redundant power and fire extinguishing systems, and your data is accessible wherever and whenever you need it. Using Quality Equipment
As always, proper equipment is key to providing a professional service or running a business properly, in all walks of life. Vu meter image . This is relevant to your memory storage solutions for many reasons. Using good quality IP cameras will enable your recordings to be high definition, and data transfers to be as efficient and secure as possible. When your security and well-being are what's at risk, using professional grade equipment will make the difference when it matters. This is not just for visual quality either, there is more to it than that.
Cheaper cameras or systems lack in several key features that are necessary to enable cloud storage, such as ftp upload capability. You want quality cameras and DVR or NVR recorders like these that enable you to configure recording both internally and remotely to either an FTP server or another NVR as backup.
These days cloud based security cameras for the home consumer market are also becoming popular, however the companies selling these types of cameras are generally selling cheaper equipment up front which happens to look very pleasing thanks to clever designs. The monthly video storage fees for these cameras are also exorbitant, and make them unrealistic for a security camera system consisting of multiple cameras. The company may offer a small amount of storage space as an introductory offering, and when you add more storage space or cameras, the monthly charges add up fast. Options for Cloud Storage
If you have purchased a IP camera, NVR, or HD DVR camera system from us, and you decide cloud storage is something you want to integrate into your security camera system, there are several different options to consider. This article will go over three cost effective methods, two of which do not entail any monthly fee.
Offsite NVR: You can stream video directly from your IP cameras over the internet to an NVR located off-site for video storage. The NVR acts as the server in a cloud (offsite). Alternatively, it is possible to have 2 NVRs where the primary NVR is on the same site as the cameras. The secondary NVR taps into video streams from the primary NVR for backup of video in real time. You can even use a offsite NVR to record video from non-ip based cameras by using our DVR recorders that can accept analog and HD over coax cameras, and make each camera's video stream accessible over the network.
Personal FTP Server: Using free software like FileZilla you can transform your PC or Mac into an FTP server that your IP cameras can upload video and/or snapshots to. Video can be uploaded continuously or when activated by motion.
Paid Cloud Storage: Using a paid service to connect to your cameras or system and host your cloud storage. Recurring monthly charges apply to this option. Requirements to Keep in Mind When Using Cloud Storage
There are several details to keep in mind when configuring cloud storage with your cameras. First and perhaps the most crucial, you need broadband internet service where the cameras are located. Your upload and download speeds must be high in order to properly support the task of sending video and/or snapshots. The main purpose of cloud storage is to send data directly to a computer or NVR at a location other than where the cameras are located. For many people incorporating cloud-based recording means constant video streams to be uploaded all the time, making high-speed internet service crucial, and not something to be overlooked.
The upload speed required depends on the number of cameras that will be recorded in the Cloud simultaneously at any given time and the camera resolution. For example, 1-megapixel 720P IP cameras will require about 3Mbps (Megabits) of bandwidth per second while 2-megapixel 1080p IP cameras will require 4-6 Mbps per camera. For everyday use, we suggest only recording when motion is detected; each camera can trigger a video feed to be uploaded for itself when it detects motion in the video using built-in analytics in the camera. This way, you don't necessarily have all cameras uploading video at the same time.
The technical knowledge base is great to have as well. To be able to understand connectivity and networking and to be able to troubleshoot is invaluable when considering cloud storage. Fortunately, the setup is easy enough that with a little research, this task is not too complex for the average computer user.
Lastly, a fast PC with plenty of storage is vital when choosing to build you own FTP server. Your internet service is one thing, but having powerful hardware is crucial to saving incoming video streams which can be an intensive process. We recommend using at least an Intel i5 dual-core CPU based computer. Offsite NVR
One of the easiest methods to accomplish cloud-based video storage of IP cameras or even DVR systems is by using an off-site NVR. By placing an NVR at a location other than the cameras constitutes recording in the cloud where the NVR is the server being recorded to. Let's say you want to save video from your business, and you have broadband internet like Verizon FiOS at your home and business. By simply utilizing these internet connections you can make your NVR at home an 'NVR in the cloud.' There are two ways to connect IP cameras to an offsite NVR:
1. Primary offsite NVR: Cameras can stream directly to the network video recorder located outside the premises
2. Secondary offsite NVR: Cameras stream first to an on-site NVR (primary NVR), and then an off-site NVR can connect to the primary NVR and backup video. This creates a redundant video storage system where there are two copies of the video. Should one unit fail the other NVR would have a copy and continue to record even in the event of hard drive failure on the other unit. This task is only possible with our NVR recorders. It is important to note that it is not necessary to record on both NVRs. You can choose to record on whichever NVR you choose, i.e. onsite or offsite. Primary OffSite NVR - Direct Camera to OffSite NVR Streaming
This method involves a data stream to be established between the camera and the NVR in the cloud over the internet. The data stream for IP cameras can encompass video, audio, ptz data, and other metadata. Since this data stream must traverse the internet, it requires port forwarding rules to be provisioned on the router or firewall behind which the cameras are located. Otherwise, the NVR will be unable to connect to the cameras.
Our IP cameras have a dedicated video stream available via a TCP port which is set by default to 37777 on every camera. A port forwarding rule has to be provisioned on the router for each camera that you have. If you have multiple cameras, their TCP port needs to be unique since every network can only have one port-forwarding rule per external port. First, you have to change the TCP port of the second camera to 37779, and 37780 for the third and so on. Second, create rules in your router to open up the firewall and route traffic for each port to the respective camera's IP address. You can find more information about port forwarding here along with router specific port forwarding guides here:
Once port forwarding is established, you can manually add each camera as a Remote Device through the NVR's menu. Enter the static external IP address of the location where the cameras are located in the IP address field and the TCP port number for each camera. We suggest changing the default username and password for the cameras to ensure additional security. Once you enter the proper username and password and hit connect, the NVR will connect to each camera. Secondary Off-Site NVR - On-Site NVR to Off-Site NVR Streaming
The main difference between this method and the one above is that it doesn't require many port forwarding rules to be set in the router where the cameras are located. Simply put, from a networking standpoint, this is an easy to follow setup. This secondary method of cloud video storage also has the added benefit of redundant video storage on-site and off-site. We recommend this solution over the first for many reasons, especially in the event of internet failure you will still have footage saved on the on-site NVR. For businesses storage redundancy is an important factor to consider.
So how does it work? It's very simple and doesn't require much technical expertise. Using a simple point and click operation you can configure both NVRs.
First, physically install your PoE cameras and use one of our NVR's with built-in PoE to make the process easier. Having a built-in PoE switch on the NVR allows the NVR to automatically assign each camera a different IP address and makes the process of installing cameras on the network a non-technical task that anyone can do. Using the Remote Device menu option, search for the cameras and choose the cameras you want the NVR to connect. Once added to the NVR these cameras will automatically be configured for streaming and recording on the NVR. Please use our guide on adding IP cameras to a PoE NVR for more information.
Once you have an IP camera system with NVR working at the primary location, connect it to the main router on the premises. Configure one port forwarding rule on your router to open port 37777 and point it towards the internal IP address of the NVR. The default IP address of the NVR is 192.168.1.108. If you have a network with a 192.168.1.x subnet, you should be able to ping the NVR at the above IP. You can use GRC Scan to ensure that your port forwarding rule is working and port 37777 is open.
Second, place the secondary off-site NVR which will serve as storage in the cloud in another location where you have internet. https://1sivirnu-ripq.wixsite.com/downloadlook/post/mac-lipstick-matte-colors-names . Using the Remote Device menu option , manually add cameras from the primary NVR by filling out information as follows:
Channel: This is the camera number on the secondary NVR and it will automatically increase as you add cameas in ascending order.
Manufacturer: Leave as Private if you are using equipment purchased from CCTV CAmer World
Address: xxx.xxx.xxx.xxx Enter your external IP address for the network at the primary location. You can find what it is by going to a computer at the primary location and typing www.myipaddress.com from a web broswer.
Port: 37777 This is the video streaming port. In this configuration type where you are connecting to one NVR to leech multiple camera streams, this port will stay the same because the NVR will allow you to select different channels to stream from a single port
User / Password: Enter the 6 character username and password configured for a user on the Primary NVR
Remote Channel: Enter the camera or channel number from the Primary NVR that you would like to stream.
Decoder Buffer: leave at 280ms
You should now have all the cameras from the primary NVR streaming to your 'Cloud NVR.' You can configure any recording schedule and encoding resolution independent of the primary NVR. You can even record in less resolution to save hard drive storage space and prolong video recording. For additional information on setting recording schedules, please see these articles: Personal FTP Server: Recording without a NVR
There is another free option to consider for users that have more computer and networking technical knowledge. That option being file transfer using FTP through programs such as FileZilla. By installing FileZilla on a Windows or Mac computer, you are able to receive data, like recordings or images from cameras over the local network or over an internet connection. This enables you to have access to these files from anywhere, eliminating the need to be on site for playback or file downloading purposes. Uploading video or images from your IP cameras via FTP is an economical solution for primary video storage without needing an NVR.
For this task, you will need your IP cameras, a free FTP program such as FileZilla and some knowledge of networking. With the step by step tutorial below, you should be able to configure your cloud storage setup with minimal effort, regardless of your technical proficiency level.
First, we will make a destination folder to save all our snapshots and videos to. Create a new folder on your computer's hard drive and call it something like 'FileZillaFolder.' We suggest using a secondary hard drive in your computer to keep camera recordings separate from the rest of your files. Install FileZilla
Next download the FileZilla server program to follow along. At the installation screen, you will see a screen asking which port number you want FileZilla to operate on. The default should be 14147, leave it as is.
Once it is finished installing a prompt will appear called 'Connect to server' with several options for the setup. You can choose your server address, for our purpose we used a loopback address of '[: : 1]' to save directly to our computer. Also, there are options for the port number it should operate on. This should be the port number that it was dedicated to at the installation screen (14147). Create your own administrative password and click OK. Create a User Group
After you click OK, the FileZilla server will start and you will see the main window for the server application called the 'Filezilla Server Interface.' Make sure you are using the Filezilla Server Interface from this point forward. From here you want to make a new group and user to control administrative rights. Click 'Edit' in the top menu of the program window, then select the option 'Groups'.
On the right, there is a button for 'add'. Click add to bring up the 'Add user group' window (see pic below) and name your group. For this tutorial purpose, we name it 'business'. Click OK to save. Create a New User and Assign to Group
From here we go back to Edit in the top menu of the program window, and this time, select 'Users.'
Now on the left under 'page' there will be an option for 'shared folders.' Create a new user and select a home directory all at once. Both are important steps for configuration. Under users there will be a button for Add. Click this to add a new user.
Choose a name for this user. Then in the drop down menu, there will be the option to choose the group. Choose the group we just made and add this new user to it. We named our user 'ipcam' and assigned it a password of 'ipcam' to keep it simple. Click OK to finalize settings. Assign Shared Folder to User
Now in the same window, we will need to configure a shared folder directory to save our videos and snapshots to. Under 'shared folders' there will be a button for 'add.' Click this to open the menu, and find the folder named 'FileZillaFolder' you made earlier to save your pictures and videos.
This will automatically make this the home directory for the FTP user we just created. Now when you see it under the 'directories' header, click it to select it as shown above. Now you will see the files and directories permissions on the side that show what you are allowing this user to do. You MUST make sure that all boxes under 'Files' and 'Directories' are checked to allow your FTP user read/write access to the directory. Click OK to apply settings and from here we can move on to the rest of the configuration which will be done on the IP camera.
Now that we have our server configured we need to go into our IP camera and change the settings to allow for FTP transfer to our FileZilla computer. First, we will need to determine what our computer's IP address is. The easiest way to do this is to bring up the command prompt. Find your Computer's IP Address
Go to the windows icon in the bottom left of your computer screen. In the search bar, type 'CMD' and click on the application to bring up your command line.
From here you need to type in the command 'ipconfig' to get your network information. Click enter to run the command. Personal Cloud For Photo Organization
Here you will see a response that says 'ipv4' with an IP address such as 192.168.1.4 This is our computer's IP address. Personal Cloud Ftp Software
Write down your IP address and you can then close the command prompt. Configure FTP recording on your IP camera
Go to your internet browser and type in your IP Camera's IP address. This will access the IP camera interface as long as it is connected to the network.
Here type in your IP camera's login information to access the settings. It's normally admin/admin if you haven't changed it to something else. Once you access the IP camera, there will be a tab at the top of the called 'setup.'
Clicking this will bring up settings options. With setup selected there will be more tabs on the left side to bring up further menus. Click 'storage' to bring up the drop-down menu and then click 'destination' to bring up the configuration page we need.
The first tab on this menu is 'Path.' Here you will see an option called 'FTP' with boxes next to it. Under the 'Record' and 'Snapshot' sections, make sure all three boxes for FTP are selected. Be sure to save your settings.
Next, go to the 'FTP' tab at the top to bring up the next menu. Personal Cloud For Iphone
There will be a checkbox for 'enable.' Make sure this is checked, otherwise, this will not work!
The 'server address' will be your computer's IP address acting as the FileZilla Server. In our case we have entered our internal IP address. If you are sending files to a server on the internet, you can certainly enter it here.
Next, the 'port' should be 21 which is for FTP protocols. 'User name' should be the user you created above in FileZilla. We named ours 'ipcam.' Fill in the password and leave 'remote directory' blank otherwise it will make a new folder within the destination folder and things will get messy. Save your settings as always and you are finished with the IP camera settings. Finished
From here, you should be all set up and you should see that your camera's file activity as lines of text in the FileZilla server window. All data (videos and snapshots) is uploaded by the camera to the folder you created using the FTP protocol.
This article shows you how to save cost and host a FTP server on your own computer. You can use the steps outlined for camera configuration above and target the camera to a FTP server located on the internet. You can use a hosting provider like Godaddy to purchase a FTP server, and upload video footage from your cameras or NVR to it. Troubleshooting
It is worth noting at this point that if you do not see activity in your server screen, you might have to disable the firewall on your computer to allow for incoming FTP transfers.
The videos are saved in DAV format. To play these types of videos, we recommend the DAV Player that comes on the CD included with your camera purchase.
Choose a recording in your folder and right click to bring up the menu. From here click 'open with' to choose the player you want to view the recording with. Set it to the DAV Player you installed. Now you should be able to view your recordings.
Your FTP computer should be all set up and ready to go from here. You can configure FTP credentials for the same user in multiple cameras. Each camera will upload video and/or snapshots and save them in a different folder name according to the camera's serial number.
The camera folder within the destination folder will be named using the camera's serial number by default. Paid Cloud Storage Services
The last option to keep in mind is implementing a paid cloud storage service. This is an option more geared towards big businesses and users that need a lot of storage capacity. The average user would probably find this option too much of a hassle for them when they look at the pricing and realize there are other options available. In fairness, there are some benefits as well as restraints.
With many cloud storage hosting services, often times you must use their cameras and products with the service. Many have cameras and software specifically designed and supported with their service. Often times you do not even outright own the cameras, you are renting them through the company. You are at the will of the service provider, and this is something that is simply not acceptable for users that are security and privacy minded.
The cameras and software are often subpar equipment. The cameras are normally cheaper grade cameras with little support base behind them. Simple models that are really only suitable for indoor home use are normally standard, and most often they are lacking several key features that consumers look for when doing research. Some examples being high-quality night vision IR technology, varifocal lens cameras, outdoor waterproof/vandal proof features, adjustable and vandal resistant mounting.
Another issue that many users don't consider until they have already made their purchase is that these paid services cameras are often times incompatible with other services and NVR units. After already installing and using these cameras for a period of time they realize that if they decided to pursue other options for storage, the cameras will have to be replaced, and then they find themselves again locked into using the service.
For most cloud storage providers, you normally have to pay monthly for their service. This monthly fee could be for a defined amount of storage, but more often than not it refers to how many cameras you are using. Amount per month per camera means that if you have a decent sized system you will pay a hefty service charge every month just to record your cameras.
The costs can quickly skyrocket for using subscription storage based cameras. If anything, it pays to do your research. You will find that despite manufacturer advertisements of HD quality video on these cameras, the video quality recorded in the end depends on the speed of your internet connection. If you are using DSL or cable modems, your upload speeds are limited and you will never come close to ever obtaining Real Time 30fps HD quality video recordings from these cameras.
Many businesses that need a large amount of storage might find this solution appropriate for their requirements. Some services will offer unlimited cloud storage and support for their service. This will help larger businesses that need to be up and running 24/7 and can't afford any downtime. If your business has a lot of sensitive information or videos that cannot be leaked, this may not be the best choice. While the data is your property, it is not exactly under your control when you send it to a cloud storage service.
There are many options for cloud storage that are economical and feasible for every type of user. If monthly recurring cost cloud storage cameras are not for you, then we recommend IP cameras or NVRs with FTP upload functionality paired with a FTP server for the cost-effective solution.
broken image