EAGER Rack Configuration. Overview

Size: px
Start display at page:

Download "EAGER Rack Configuration. Overview"

Transcription

1 EAGER Rack Configuration Overview Introduction This document briefly gives an overview of the second demo rack for the EAGER system. I shall describe each piece of the rack, its purpose and an overview of its operation. This project makes extensive use of VLANs, and many of the problems encountered involved the configuration of the various VLANs. Note that this document is somewhat inconsistent on the number of services available. Service 104 is currently not implemented, but some instructions about implementation details for it have been included. Server The main server hosts the virtual machines that provide the individual services. This machine contains 6 network ports, 2 on the processor board, and an additional 4 on a separate card. It contains a 1 TB hard drive, and a 256GB SSD drive. It has 4GB processor memory. Base Operating System The base operating system used on te server is Ubuntu Linux (64 bit). There is a singlue user account, called user. The software used to create the VLANS is the linux kernel vlan package. The original attempt was to use OpenVswitch, because it is compatable with OpenFlow switches, however configuring it to work properly required more extensive research than was available at the time, so the switch to vlan was made. To configure the ports for the 4 services, the following start_vlan code is used #!/bin/bash ifconfig eth up ifconfig eth up vconfig add eth2 100 ifconfig eth2.100 up ifconfig eth up vconfig add eth3 101

2 ifconfig eth3.101 up ifconfig eth up vconfig add eth4 102 ifconfig eth4.102 up ifconfig eth up vconfig add eth5 103 ifconfig eth5.103 up ifconfig eth up vconfig add eth6 104 ifconfig eth6.104 up dhclient eth1 v This code it automaticazlly executed at system startup by adding a reference to it in /etc/rc.local. The server machine only provides a platform to run virtual machines for each service, it does not provide any applications in itself. The software used on this machine for the virtual machines is VirtualBox, installed from the Ubuntu repositories. It runs under the user account. No special changes were required to this package. The images for the 4 services were copied off the Ammon machine. Services The service virtual machines running on the main server are isolated by the VLANs that they are tied to. Each services runs under a separate virtual machine, and boot up with a static IP address of Since they are all on different VLANs, the duplication of this IP address is isolated from each other. Most of the services provide a LTSP (Linux Terminal Server Project) image for the virtual machines on the Home systems to boot from. Service 100 does not, because it is a special controller service that does not directly interact with the home system displays. The original images provided by Chris were incomplete. Apparently he was attempting to rebuild them from scratch, but did not get much beyond installing Ubuntu. Instead of attempting to finish building each service, we just copies the service images from the City of Ammon cart. Service 100 Service 100 is a control service. It is used to control which service is being displayed on the Home systems. This one is special, in that it does not have an actual service displayed on the Home systems. It connects to two network interfaces, the first id eth2.100, which connects it to the

3 Switch VLAN-100 network. The other is NAT which allows it to reach the regular internet. The NAT interface is not used by this service, but is useful for maintenance purposes. The Service manager console allows an operator to communicate which service should be displayed on the Home systems. The code that accomplishes this resides in the /var/www directory for the operator interface, and the /home/user/ directory fo the code that communicates with the Home systems. To access this software, point the manager system plugged into the Service0 port to the URL Service 101 Service 101 provides weather information. This service has two network interfaces, one attached to VLAN-101 and the other attached to NAT. The NAT is not used by the software, but is useful for maintenance purposes. The home systems boot LTSP from this service, then start the captive browser EAGERBrowser, then displays the /var/www/ pages. Service 102 Service 102 provides a 911 call interface. This service has two network interfaces, one attached to VLAN-102 and the other attached to NAT. The NAT is not used by the software, but is useful for maintenance purposes. The home systems boot LTSP from this service, then starts a special version of linphone. Service 103 Service 103 provides emergency alerts, such as Amber Alerts. This service has two network interfaces, one attached to VLAN-103 and the other attached to NAT. The NAT is not used by the software, but is useful for maintenance purposes. The home systems boot LTSP from this service, then start the captive browser EAGERBrowser, then displays the /var/www/ pages. The switch provides the network intterface between the components. Most of the components interact in such a way that any switch that can handle VLAN traffic will work, except for the management systems, which need a switch capable of VLAN tagging the traffic coming from those ports. The goal for the second rack is to use an OpenFlow switch, but with so many parts of the system broken, we borrowed a Brocade switch configured just like the City of Ammon's cart. Once we get the system working using the brocade switch, we will switch back to the OpenFlow switch.

4 Brocade The brocade switch is configured with ports 1-4 for the virtual server, 5-8 for the management consoles, and 9-12 for the home systems. This one was borrowed from Ammon and was pres-configured just like the one on their cart. The server ports (1-4) are configured to pass traffic normally. Port 5 tags traffic to VLAN-100. Port 6 takes untagged traffic to VLAN-101. Port 7 tags untagged traffic to VLAN-102. Port 8 tags untagged traffic to VLAN-103. Ports 9-12 tag untagged traffic to VLAN-100. HP OpenFlow The HP OpenFloow switch is a software configured switch that allows flexibility in controlling network traffic. FloodLight Controller The FloodLight controller is a separate, small Ubuntu system running the FloodLight OpenFlow software. In the floodlight configuration file /etc/floodlight/floodlightdefault.properties, remove the line that ends with forwarding. This line causes the switch to act like a (slow) forwarding switch. Leaving this line in will actually work, but does not allow for much traffic shaping. In order to define our own (faster) static flows, the files ofboot.4.py, a python script, should be used. To get a simple look at the operation of FloodLight, poit a browser on that system to and a console display will be shown. Click on the switch ID, and it will display the ports and flows operating on the switch. The flows will display with insufficient information about the flows, but it will give you packet counts to see if the flows are doing anything. To clear out the current floodlight flows, execute the following code on the controller. curl Moodify the switch ID to match the actual switch used. Examples given in numerous tutorials sow this command with a space before the /clear, but itt will not work with the space there. A startup file called ofboot.4.py, which is a python script based on the floodlight documentation, is used to create the necessary flows to control traffic on the switch. This creates flows based on VLAN IDs, so modifying them to prioritize services should be easy. # ofboot.4.py # # Openflow (floodlight) configuration. Version 2. # # Flows arer based on vlan id's. # It uses hybrid technology. # # It is fairly fast. # import httplib import json class StaticFlowPusher(object):

5 def init (self, server): self.server = server def get(self, data): ret = self.rest_call({, 'GET') return json.loads(ret[2]) def set(self, data): ret = self.rest_call(data, 'POST') return ret[0] == 200 def remove(self, objtype, data): ret = self.rest_call(data, 'DELETE') return ret[0] == 200 def rest_call(self, data, action): path = '/wm/staticflowentrypusher/json' headers = { 'Content-type': 'application/json', 'Accept': 'application/json', body = json.dumps(data) conn = httplib.httpconnection(self.server, 8080) conn.request(action, path, body, headers) response = conn.getresponse() ret = (response.status, response.reason, response.read()) print ret conn.close() return ret pusher = StaticFlowPusher(' ') "name":"vlan-100", "vlan-id":"100", "name":"vlan-101", "vlan-id":"101", "name":"vlan-102", "vlan-id":"102", "name":"vlan-103", "vlan-id":"103",

6 "name":"vlan-104", "vlan-id":"104", "name":"vlan-99", "vlan-id":"99", HP OpenFlow Switch The HP openflow switch is a 24 port hybrid switch capable of using openflow to control the network traffic between ports. HP Supplies a manual on the internet called HP OpenFlow Switches which helps with understanding how to configure the switch. (HP Part Number: ) It helps, but many things are missing or confusing. Floodlight is currently unable to handle everything necessary for tagging specific ports to specific VLANs, therefore, the switch is programmed in a hybrid mode where the switch software controls the VLAN tagging, and the OpenFlow provides the routing. The port used for the OpenFlow controller cannot take part in OpennFlow. Ports 23 and 24 have been assiged for the controller. One port could be sufficient, but the second port allows for a secondary (backup) controller in case there is a problem with the first one. OpenFlow must be enabled on the switch, and it must know about the OpenFlow controller. This is covered in the HP openflow Switches manual, previously referenced. OpenFlow must be enabled in the switchs Port/Trunk Settings menu, for all the ports to be used for OpenFlow (ports 1-22). Leave ports disabled fr the FloodLight controller. VLAN-1 should already exist as DEFAULT_VLAN, but additional VLANs 99, 100, 101, 102, 103, and 104 must be created under the VLAN Names menu. VLANs are used for the services, and VLAN-99 is used by the OpenFlow to carry untagged traffic (normal internet traffic). In the HP OpenFlow switch, all traffic must be attached to a VLAN, so VLAN-99 is used to carry traffic that should not be VLAN tagged. Inside the switch, this

7 VLAN is tagged/untagged internally, so that when the traffic leaves the switch no VLAN tages are seen. In the VLAN Port Assignment menu, set all the ports on VLAN 1 (DEFAULT_VLAN) to no, but set port 23 nd 24 to untagged. For all other VLANs, port should be set to No. Set VLAN-99 on all ports (except 23-24) to untagged. Set VLAN-101 through VLAN-103 on all ports except to tagged. VLAN-1 (DEFAULT_VLAN) is special. This is the VLAN that handles the OpenFlow/FloodLight controller. Allocating the FloodLight controller to another VLAN as tagged or untagged will cause it to be unable to communicate with the switch. Even the telnet (putty) interface will be unavailable, requiring the serial cable interface to fix it. The VLAN-99 (untagged) allows normal traffic to flow through the OpenFlow switch. Everything in OpenFlow must go through a VLAN, and this assignes such traffic to VLAN-99. If you try to send traffic as VLAN-99 with this configuration, the switch will strup off the VLAN tag and pass it as regular traffic. With all ports that want to access the internet set as untagged on this VLAN, the traffic will appear internal to the switch as belonging to VLAN-99, bou outside of the switch the tags will be removed and it will look lik normal traffic. VLANs are allocated for the EAGER services. Here is a chart of how the types of ports are allocated. Some assignments can be set in multiple ways, so all are shown with the preferred (more restrictive) shown first. Server0-4 are 4 ethernet ports attached to the main server's virtual machines. SM1-4 are the service manager ports. Generic is for unallocated ports, or ports used for normal network access. OF Ctl is the OpenFlow controller. NAT is for a network interface box (hub) used to create a NAT firewall interface between the rack and the internet, and to provide local DHCP services for normal internet traffic. VLAN Port Assignments DEFAULT Untagged Service100 Service101 Service102 Service103 Service Server0 No No/untagged tagged No/tagged No/Tagged No/Tagged No/tagged Server1 no No/Untagged No/tagged tagged No/tagged No/tagged No/tagged Server2 no No/Untagged No/tagged No/tagged tagged No/tagged No/tagged Server3 No No/Untagged No/tagged No/tagged No/tagged tagged No/tagged Server4 No No/Untagged No/tagged No/tagged No/tagged No/tagged tagged Home No No Untagged Tagged Tagged Tagged tagged Manager No No Untagged No No No No SM1 No No No Untagged No No No SM2 No No No No Untagged No No SM3 No No No No No Untagged No

8 VLAN Port Assignments SM4 No No No No No No Untagged Generic No Untagged Tagged Tagged Tagged Tagged Tagged NAT No Untagged Tagged Tagged Tagged Tagged Tagged OF Ctl Untagged No No No No No No Here is how the ports are defined on the demo system Switch Configuration - VLAN - VLAN Port Assignment Port DEFAULT_VLAN untagged Service 0 Service 1 Service > 1 No Untagged Tagged No No 2 No No Untagged Tagged Tagged 3 No Untagged No Tagged No 4 No No Untagged Tagged Tagged 5 No Untagged No No Tagged 6 No No Untagged Tagged Tagged 7 No Untagged No No No 8 No No Untagged Tagged Tagged 9 No Untagged No No No 10 No Untagged Tagged Tagged Tagged 11 No Untagged Tagged Tagged Tagged 12 No Untagged Tagged Tagged Tagged 13 No Untagged Tagged Tagged Tagged 14 No No Untagged No No 15 No Untagged Tagged Tagged Tagged 16 No No No Untagged No 17 No Untagged Tagged Tagged Tagged 18 No No No No Untagged 19 No Untagged Tagged Tagged Tagged 20 No No No No No 21 No Untagged Tagged Tagged Tagged 22 No No No No No 23 Untagged No No No No 24 Untagged No No No No Home Systems (4 copies) These systems are the display units for the alerts. These systems attach to VLANs VLAN 100 is handled in the switch, which converts normal traffic to VLAN-100 but passes the other VLAN traffic as-is. VLAN are handled by the virtual machines themselves.

9 First install Ubuntu on then, then run the script Chris has provided to install additional software. The images Chris supplied is missing the file /home/user/eagerhypervisorclient/config.ini, so copy this file onto each home system, or they will not switch services like they should. [client_client] server_address= port=4200 program= /home/user/switch_to_vm.sh When a service is selected to be brought up front, any VirtualBox service currently up front will be minimized, and the selected service will be brought to the front. If it has not already been started, it will do a PXE boot from the service on the main server. This involves bootinh a LTSP image of Ubuntu, and running EAGERBrowser inside that image. The browser will load to display the service. Network Manager The Network manager controls which service is being displayed on the Home systems. It will switch all of the systems that it knows about to the desired service. There is no way to switch an individual machine. This machine access VLAN-100 only. The VLAN tagging is handled by the switch. Service Manager (1-3) There should be 3 service manager systems, one for each service, but we are simulating them by switching one machine into each service port. These machines attach to the VLAN defined by the service ( ), which are handled in the switch. Chris's Install is missing the file /hoe/user/config.ini [admin_client] server_address= port=4201 admin_url= client_url= allow_plugins=true [client_client] server_address= port=4200 fullscreen=false allow_plugins=true cookies="

10 [server] NAT Box admin_port=4201 client_port=4200 start_url= A home switch is used to provide DHCP services, and to interface the rack to the internet when needed. The base address of the NAT box sould be , and it sould provide DHCP addresses within that range. For normal usage, the rack does not need internet access. Service Operation Internals This is a brief overview about how the entire system operates. 1. When a Home system is started up, it sends a signal to Service-100 (using VLAN-100) to log its existence to the EAGERHypervisorServer. This keeps an internal list of Home Systems for later use. Thus, Server-100 must be started before the Home systems, and if the supervisor is restarted, then the home systems must also be restarted. 2. One of the service managers will use the web interface for that service (on a service specific VLAN) to edit the message, and post it. This stores the message in that services Virtual machine,, and makes the message available for the next time the Home browser is refreshed. 3. The network manager will select the service that will be displayed. On the service, this causes a 4201 signal (on VLAN-100), which makes the EAGERHypervisorServer image to send a signal 4200 to each Home system it knows about. This causes the home system to execute the script ****, which switches the service being displayed. 4. The Home system received the 4200 signal (on VLAN-100), causing the script **** to execute, which switches to the virtual machine that represents that service. If it is already booted, it just refreshes the browser screen. 5. If the Home Service hasn't booted yet, then it uses PXE to boot from the Service Virtual Machine (on service specific VLAN), downloading a LTSP image, through downloading EAGERBrowser. Once the browser starts, it loads the specific web site from the Service (on service specific VLAN). Usuually Booting The startup has not been completely automated yet, so his startup procedure may vary as that happens. 1. Power up the switch, and the FloodLight controller. Press button 2 on the KVM, push the power button on the small box behind the screen. Which is the FloodLight controller On the floodlight controller, start the flows usinng the command python ofboot.4.py 2. Start the server. Press button 1 on the KVM, then the power button on the server. Make sure the VLANs have started using ifconfig. If tey have not, use start_vlan to start them. 3. Start the services. On thr server, start Virtual box bye typing virtualbox &. then select each of the

11 services, and press the start button. Give them some time to boot. 4. Start the service system()s. Power them up. Start the monitering program./adminclientlauncher.sh. 5. Start the management systems. Start the system browser, and go to the URL 6. Start the 4 home systems. The order doesn't matter. They need to be started after Service-100 has completely booted.

Installation of the On Site Server (OSS)

Installation of the On Site Server (OSS) Installation of the On Site Server (OSS) rev 1.1 Step #1 - Initial Connection to the OSS Having plugged in power and an ethernet cable in the eth0 interface (see diagram below) you can connect to the unit

More information

VLAN for DekTec Network Adapters

VLAN for DekTec Network Adapters Application Note DT-AN-IP-2 VLAN for DekTec Network Adapters 1. Introduction VLAN (Virtual LAN) is a technology to segment a single physical network into multiple independent virtual networks. The VLANs

More information

Tutorial. Reference http://www.openflowswitch.org/foswiki/bin/view/openflow/mininetgettingstarted for more thorough Mininet walkthrough if desired

Tutorial. Reference http://www.openflowswitch.org/foswiki/bin/view/openflow/mininetgettingstarted for more thorough Mininet walkthrough if desired Setup Tutorial Reference http://www.openflowswitch.org/foswiki/bin/view/openflow/mininetgettingstarted for more thorough Mininet walkthrough if desired Necessary Downloads 1. Download VM at http://www.cs.princeton.edu/courses/archive/fall10/cos561/assignments/cos561tutorial.zip

More information

Pearl Echo Installation Checklist

Pearl Echo Installation Checklist Pearl Echo Installation Checklist Use this checklist to enter critical installation and setup information that will be required to install Pearl Echo in your network. For detailed deployment instructions

More information

VLANs. Application Note

VLANs. Application Note VLANs Application Note Table of Contents Background... 3 Benefits... 3 Theory of Operation... 4 IEEE 802.1Q Packet... 4 Frame Size... 5 Supported VLAN Modes... 5 Bridged Mode... 5 Static SSID to Static

More information

Debugging Network Communications. 1 Check the Network Cabling

Debugging Network Communications. 1 Check the Network Cabling Debugging Network Communications Situation: you have a computer and your NetBurner device on a network, but you cannot communicate between the two. This application note provides a set of debugging steps

More information

CDH installation & Application Test Report

CDH installation & Application Test Report CDH installation & Application Test Report He Shouchun (SCUID: 00001008350, Email: she@scu.edu) Chapter 1. Prepare the virtual machine... 2 1.1 Download virtual machine software... 2 1.2 Plan the guest

More information

Optimum Business SIP Trunk Set-up Guide

Optimum Business SIP Trunk Set-up Guide Optimum Business SIP Trunk Set-up Guide For use with IP PBX only. SIPSetup 07.13 FOR USE WITH IP PBX ONLY Important: If your PBX is configured to use a PRI connection, do not use this guide. If you need

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

F-Secure Internet Gatekeeper Virtual Appliance

F-Secure Internet Gatekeeper Virtual Appliance F-Secure Internet Gatekeeper Virtual Appliance F-Secure Internet Gatekeeper Virtual Appliance TOC 2 Contents Chapter 1: Welcome to F-Secure Internet Gatekeeper Virtual Appliance.3 Chapter 2: Deployment...4

More information

GVRP Overview. Overview

GVRP Overview. Overview 3 GVRP Contents Overview...................................................... 3-2................................................... 3-3 General Operation........................................... 3-4

More information

TimeIPS Server. IPS256T Virtual Machine. Installation Guide

TimeIPS Server. IPS256T Virtual Machine. Installation Guide TimeIPS Server IPS256T Virtual Machine Installation Guide TimeIPS License Notification The terms and conditions applicable to the license of the TimeIPS software, sale of TimeIPS hardware and the provision

More information

Altor Virtual Network Security Analyzer v1.0 Installation Guide

Altor Virtual Network Security Analyzer v1.0 Installation Guide Altor Virtual Network Security Analyzer v1.0 Installation Guide The Altor Virtual Network Security Analyzer (VNSA) application is deployed as Virtual Appliance running on VMware ESX servers. A single Altor

More information

mypro Installation and Handling Manual Version: 7

mypro Installation and Handling Manual Version: 7 mypro Installation and Handling Manual Version: 7 Date: JAN 2016 Thank you for using mypro on your PC. myscada is a full featured HMI/SCADA system with advanced options such as vector graphics views, advanced

More information

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015 Metalogix SharePoint Backup Publication Date: August 24, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this

More information

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

Bitrix Site Manager. VMBitrix Virtual Machine. Quick Start And Usage Guide

Bitrix Site Manager. VMBitrix Virtual Machine. Quick Start And Usage Guide Bitrix Site Manager VMBitrix Virtual Machine. Quick Start And Usage Guide Contents Introduction... 3 Chapter 1. Starting The VMBitrix Virtual Machine... 4 Minimum Requirements For VMWare Player / VMBitrix...

More information

Enterprise Remote Control 5.6 Manual

Enterprise Remote Control 5.6 Manual Enterprise Remote Control 5.6 Manual Solutions for Network Administrators Copyright 2015, IntelliAdmin, LLC Revision 3/26/2015 http://www.intelliadmin.com Page 1 Table of Contents What is Enterprise Remote

More information

IntraVUE Plug Scanner/Recorder Installation and Start-Up

IntraVUE Plug Scanner/Recorder Installation and Start-Up IntraVUE Plug Scanner/Recorder Installation and Start-Up The IntraVUE Plug is a complete IntraVUE Hardware/Software solution that can plug directly into any network to continually scan and record details

More information

Acellus Lab Cart. User s Manual. Version 4B. Acellus Corporation www.acellus.com. Copyright 2010 Acellus Corporation. All Rights Reserved.

Acellus Lab Cart. User s Manual. Version 4B. Acellus Corporation www.acellus.com. Copyright 2010 Acellus Corporation. All Rights Reserved. Acellus Lab Cart User s Manual Version 4B Acellus Corporation www.acellus.com 1 Table of Contents Using Acellus... 3 Acellus Lab Cart and Server... 3 Acellus Laptops... 3 Acellus Updates... 4 Accessing

More information

Building a Penetration Testing Virtual Computer Laboratory

Building a Penetration Testing Virtual Computer Laboratory Building a Penetration Testing Virtual Computer Laboratory User Guide 1 A. Table of Contents Collaborative Virtual Computer Laboratory A. Table of Contents... 2 B. Introduction... 3 C. Configure Host Network

More information

Kerio Operator. Getting Started Guide

Kerio Operator. Getting Started Guide Kerio Operator Getting Started Guide 2011 Kerio Technologies. All rights reserved. 1 About Kerio Operator Kerio Operator is a PBX software for small and medium business customers. Kerio Operator is based

More information

Network Monitoring User Guide Pulse Appliance

Network Monitoring User Guide Pulse Appliance Network Monitoring User Guide Pulse Appliance 2007 Belkin Corporation. All rights reserved. F1DUXXX All trade names are registered trademarks of respective manufacturers listed. Table of Contents Pulse

More information

Basic Router and Switch Instructions (Cisco Devices)

Basic Router and Switch Instructions (Cisco Devices) Basic Router and Switch Instructions (Cisco Devices) Basic Device Connection 1. Connect to the device via the console cable (light blue cable) and the use of a terminal program (Windows Hyperterminal,

More information

Multi-Homing Security Gateway

Multi-Homing Security Gateway Multi-Homing Security Gateway MH-5000 Quick Installation Guide 1 Before You Begin It s best to use a computer with an Ethernet adapter for configuring the MH-5000. The default IP address for the MH-5000

More information

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011

LOCKSS on LINUX. Installation Manual and the OpenBSD Transition 02/17/2011 LOCKSS on LINUX Installation Manual and the OpenBSD Transition 02/17/2011 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 7 BIOS Settings... 10 Installation... 11 Firewall

More information

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide July 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, Hypervisor Attached Storage, HAS, Hypervisor

More information

Virtual machine W4M- Galaxy: Installation guide

Virtual machine W4M- Galaxy: Installation guide Virtual machine W4M- Galaxy: Installation guide Christophe Duperier August, 6 th 2014 v03 This document describes the installation procedure and the functionalities provided by the W4M- Galaxy virtual

More information

This techno knowledge paper can help you if: You need to setup a WAN connection between a Patton Router and a NetGuardian.

This techno knowledge paper can help you if: You need to setup a WAN connection between a Patton Router and a NetGuardian. Problem: Patton / 240T WAN Setup Platform: NetGuardian 240T This TKP is a guide to setting up a PPP to T1 WAN connection between a Patton Model 2603 Router and a NetGuardian 240T. The example in this guide

More information

Release Notes for Fuel and Fuel Web Version 3.0.1

Release Notes for Fuel and Fuel Web Version 3.0.1 Release Notes for Fuel and Fuel Web Version 3.0.1 June 21, 2013 1 Mirantis, Inc. is releasing version 3.0.1 of the Fuel Library and Fuel Web products. This is a cumulative maintenance release to the previously

More information

Virtual Web Appliance Setup Guide

Virtual Web Appliance Setup Guide Virtual Web Appliance Setup Guide 2 Sophos Installing a Virtual Appliance Installing a Virtual Appliance This guide describes the procedures for installing a Virtual Web Appliance. If you are installing

More information

ON HOLD ANNOUNCER. Once you receive your audio announcer, check the packaging to ensure that all of the following items are enclosed:

ON HOLD ANNOUNCER. Once you receive your audio announcer, check the packaging to ensure that all of the following items are enclosed: ON HOLD ANNOUNCER The is a high quality digital on-hold announcer. It is designed to be attached to a 100BASE-T Ethernet network to receive audio production updates via the Internet. These instructions

More information

CYAN SECURE WEB APPLIANCE. User interface manual

CYAN SECURE WEB APPLIANCE. User interface manual CYAN SECURE WEB APPLIANCE User interface manual Jun. 13, 2008 Applies to: CYAN Secure Web 1.4 and above Contents 1 Log in...3 2 Status...3 2.1 Status / System...3 2.2 Status / Network...4 Status / Network

More information

6.0. Getting Started Guide

6.0. Getting Started Guide 6.0 Getting Started Guide Netmon Getting Started Guide 2 Contents Contents... 2 Appliance Installation... 3 IP Address Assignment (Optional)... 3 Logging In For the First Time... 5 Initial Setup... 6 License

More information

Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev.

Management Software. Web Browser User s Guide AT-S106. For the AT-GS950/48 Gigabit Ethernet Smart Switch. Version 1.0.0. 613-001339 Rev. Management Software AT-S106 Web Browser User s Guide For the AT-GS950/48 Gigabit Ethernet Smart Switch Version 1.0.0 613-001339 Rev. A Copyright 2010 Allied Telesis, Inc. All rights reserved. No part of

More information

Exhibit n.2: The layers of a hierarchical network

Exhibit n.2: The layers of a hierarchical network 3. Advanced Secure Network Design 3.1 Introduction You already know that routers are probably the most critical equipment piece in today s networking. Without routers, internetwork communication would

More information

How to Configure an Initial Installation of the VMware ESXi Hypervisor

How to Configure an Initial Installation of the VMware ESXi Hypervisor How to Configure an Initial Installation of the VMware ESXi Hypervisor I am not responsible for your actions or their outcomes, in any way, while reading and/or implementing this tutorial. I will not provide

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

Remote PC Guide for Standalone PC Implementation

Remote PC Guide for Standalone PC Implementation Remote PC Guide for Standalone PC Implementation Updated: 2007-01-22 The guide covers features available in NETLAB+ version 3.6.1 and later. IMPORTANT Standalone PC implementation is no longer recommended.

More information

1 Basic Configuration of Cisco 2600 Router. Basic Configuration Cisco 2600 Router

1 Basic Configuration of Cisco 2600 Router. Basic Configuration Cisco 2600 Router 1 Basic Configuration of Cisco 2600 Router Basic Configuration Cisco 2600 Router I decided to incorporate the Cisco 2600 into my previously designed network. This would give me two seperate broadcast domains

More information

Configuring PA Firewalls for a Layer 3 Deployment

Configuring PA Firewalls for a Layer 3 Deployment Configuring PA Firewalls for a Layer 3 Deployment Configuring PAN Firewalls for a Layer 3 Deployment Configuration Guide January 2009 Introduction The following document provides detailed step-by-step

More information

Local Caching Servers (LCS): User Manual

Local Caching Servers (LCS): User Manual Local Caching Servers (LCS): User Manual Table of Contents Local Caching Servers... 1 Supported Browsers... 1 Getting Help... 1 System Requirements... 2 Macintosh... 2 Windows... 2 Linux... 2 Downloading

More information

application note LAN Power: HP Web QoS with HP ProCurve Switches What is WebQoS? How WebQoS Classifies and Prioritizes Traffic

application note LAN Power: HP Web QoS with HP ProCurve Switches What is WebQoS? How WebQoS Classifies and Prioritizes Traffic application note HP Pr ocurve Switches & Hubs LAN Power: HP Web QoS with HP ProCurve Switches The amount of web traffic in networks is increasing dramatically as more businesses are using the web to provide

More information

Symantec Database Security and Audit 3100 Series Appliance. Getting Started Guide

Symantec Database Security and Audit 3100 Series Appliance. Getting Started Guide Symantec Database Security and Audit 3100 Series Appliance Getting Started Guide Symantec Database Security and Audit 3100 Series Getting Started Guide The software described in this book is furnished

More information

JAMF Software Server Installation Guide for Linux. Version 8.6

JAMF Software Server Installation Guide for Linux. Version 8.6 JAMF Software Server Installation Guide for Linux Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate.

More information

Meraki MX50 Hardware Installation Guide

Meraki MX50 Hardware Installation Guide Meraki MX50 Hardware Installation Guide January 2011 Copyright 2010, Meraki, Inc. www.meraki.com 660 Alabama St. San Francisco, California 94110 Phone: +1 415 632 5800 Fax: +1 415 632 5899 Copyright: 2010

More information

Setup Cisco Call Manager on VMware

Setup Cisco Call Manager on VMware created by: Rainer Bemsel Version 1.0 Dated: July/09/2011 The purpose of this document is to provide the necessary steps to setup a Cisco Call Manager to run on VMware. I ve been researching for a while

More information

PHD Virtual Backup for Hyper-V

PHD Virtual Backup for Hyper-V PHD Virtual Backup for Hyper-V version 7.0 Installation & Getting Started Guide Document Release Date: December 18, 2013 www.phdvirtual.com PHDVB v7 for Hyper-V Legal Notices PHD Virtual Backup for Hyper-V

More information

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.1.0.XXX Requirements and Implementation Guide (Rev 4-10209) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis Training Series

More information

PARALLELS SERVER BARE METAL 5.0 README

PARALLELS SERVER BARE METAL 5.0 README PARALLELS SERVER BARE METAL 5.0 README 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. This document provides the first-priority information on the Parallels Server Bare Metal

More information

Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX

Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX NOTE: This is an advisory document to be used as an aid to resellers and IT staff looking to use the Edgewater 4550 in conjunction with

More information

3.5 EXTERNAL NETWORK HDD. User s Manual

3.5 EXTERNAL NETWORK HDD. User s Manual 3.5 EXTERNAL NETWORK HDD User s Manual Table of Content Before You Use Key Features H/W Installation Illustration of Product LED Definition NETWORK HDD Assembly Setup the Network HDD Home Disk Utility

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

BR-800. ProHD Broadcaster. Easy Set-Up Guide V 1.01

BR-800. ProHD Broadcaster. Easy Set-Up Guide V 1.01 BR-800 ProHD Broadcaster Easy Set-Up Guide V 1.01 BR-800 EASY SET-UP GUIDE BEFOREYOUBEGIN! Pleasedeterminethetypeofconfigurationbyselectingthescenariothatbest describesthewayyouwillbeusingyourbr-800prohdbroadcaster.onceyouhavedeterminedyour

More information

System i and System p. Customer service, support, and troubleshooting

System i and System p. Customer service, support, and troubleshooting System i and System p Customer service, support, and troubleshooting System i and System p Customer service, support, and troubleshooting Note Before using this information and the product it supports,

More information

Connecting the DG-102S VoIP Gateway to your network

Connecting the DG-102S VoIP Gateway to your network Contents of Package: DG-102S VoIP Station Gateway Power adapter CD-ROM, including User s Manual Quick Install Guide Requirements: RS-232 Console Cable Two RJ-45 CAT-5 Straight-Through Cables For more information

More information

TotalCloud Phone System

TotalCloud Phone System TotalCloud Phone System Cisco SF 302-08P PoE VLAN Configuration Guide Note: The below information and configuration is for deployment of the Cbeyond managed switch solution using the Cisco 302 8 port Power

More information

IP Address and Pre-configuration Information

IP Address and Pre-configuration Information IP Address and Pre-configuration Information Ethernet Connectivity: Connect your workstation or device to the Digi Cellular Device via one of these methods: Direct from workstation to Digi Cellular Device

More information

Security Analytics Virtual Appliance

Security Analytics Virtual Appliance Security Analytics Virtual Appliance Installation Guide for VMware 19 March 2015 This document is intended to help you use the web interface to configure your Security Analytics Virtual Appliance to perform

More information

Monitoring and Analyzing Switch Operation

Monitoring and Analyzing Switch Operation B Monitoring and Analyzing Switch Operation Contents Overview..................................................... B-3....................................... B-4 Menu Access To Status and Counters.........................

More information

Configuring your network settings to use Google Public DNS

Configuring your network settings to use Google Public DNS Configuring your network settings to use Google Public DNS When you use Google Public DNS, you are changing your DNS "switchboard" operator from your ISP to Google Public DNS. In most cases, the IP addresses

More information

EZblue BusinessServer The All - In - One Server For Your Home And Business

EZblue BusinessServer The All - In - One Server For Your Home And Business EZblue BusinessServer The All - In - One Server For Your Home And Business Quick Start Guide Version 3.8 1 2 3 EZblue Server Overview EZblue Server Installation EZblue Server Configuration 4 EZblue Magellan

More information

How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall

How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall Quick Start Guide McAfee Firewall Enterprise, Multi-Firewall Edition model S7032 This quick start guide provides high-level instructions for setting up McAfee Firewall Enterprise, Multi-Firewall Edition

More information

Lab 8.4.2 Configuring Access Policies and DMZ Settings

Lab 8.4.2 Configuring Access Policies and DMZ Settings Lab 8.4.2 Configuring Access Policies and DMZ Settings Objectives Log in to a multi-function device and view security settings. Set up Internet access policies based on IP address and application. Set

More information

MAX T1/E1. Quick Start Guide. VoIP Gateway. Version 1.0

MAX T1/E1. Quick Start Guide. VoIP Gateway. Version 1.0 MAX T1/E1 TM VoIP Gateway Quick Start Guide Version 1.0 Contents INTRODUCTION 1 Hardware Needed Software Needed 1 1 NET2PHONE MAX SET UP Hardware Set Up Software Set Up Set Up Internet Protocol (IP) Address

More information

IRF2000 IWL3000 SRC1000 Application Note - Develop your own Apps with OSGi - getting started

IRF2000 IWL3000 SRC1000 Application Note - Develop your own Apps with OSGi - getting started Version 2.0 Original-Application Note ads-tec GmbH IRF2000 IWL3000 SRC1000 Application Note - Develop your own Apps with OSGi - getting started Stand: 28.10.2014 ads-tec GmbH 2014 IRF2000 IWL3000 SRC1000

More information

PFSENSE Load Balance with Fail Over From Version Beta3

PFSENSE Load Balance with Fail Over From Version Beta3 PFSENSE Load Balance with Fail Over From Version Beta3 Following are the Installation instructions of PFSense beginning at first Login to setup Load Balance and Fail over procedures for outbound Internet

More information

Imaging Computing Server User Guide

Imaging Computing Server User Guide Imaging Computing Server User Guide PerkinElmer, Viscount Centre II, University of Warwick Science Park, Millburn Hill Road, Coventry, CV4 7HS T +44 (0) 24 7669 2229 F +44 (0) 24 7669 0091 E cellularimaging@perkinelmer.com

More information

Migration Strategies and Tools for the HP Print Server Appliance

Migration Strategies and Tools for the HP Print Server Appliance white paper HP Print Server Appliance 4250 July 2003 Migration Strategies and Tools for the HP Print Server Appliance (Web Jetadmin version 7.2 and above; PSA Firmware version 2.4.x and above) Overview

More information

Virtual Managment Appliance Setup Guide

Virtual Managment Appliance Setup Guide Virtual Managment Appliance Setup Guide 2 Sophos Installing a Virtual Appliance Installing a Virtual Appliance As an alternative to the hardware-based version of the Sophos Web Appliance, you can deploy

More information

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3 NOC PS manual Copyright Maxnet 2009 2015 All rights reserved Page 1/45 Table of contents Installation...3 System requirements...3 Network setup...5 Installation under Vmware Vsphere...8 Installation under

More information

Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide. Revised February 28, 2013 2:32 pm Pacific

Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide. Revised February 28, 2013 2:32 pm Pacific Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide Revised February 28, 2013 2:32 pm Pacific Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide

More information

SQL 2012 Installation Guide. Manually installing an SQL Server 2012 instance

SQL 2012 Installation Guide. Manually installing an SQL Server 2012 instance SQL 2012 Installation Guide Manually installing an SQL Server 2012 instance Fig 1.2 Fig 1.1 Installing SQL Server Any version and edition of Microsoft SQL Server above 2000 is supported for use with the

More information

Using Cisco UC320W with Windows Small Business Server

Using Cisco UC320W with Windows Small Business Server Using Cisco UC320W with Windows Small Business Server This application note explains how to deploy the Cisco UC320W in a Windows Small Business Server environment. Contents This document includes the following

More information

Virtual Systems with qemu

Virtual Systems with qemu Virtual Systems with qemu Version 0.1-2011-02-08 Christian Külker Inhaltsverzeichnis 1 Image Creation 2 1.1 Preparations.................................. 2 1.2 Creating a Disk Image.............................

More information

Local Caching Servers (LCS) February 2015

Local Caching Servers (LCS) February 2015 Local Caching Servers (LCS) February 2015 1.1 Chapter 1: Welcome to LCS The Kansas Interactive Testing Engine (KITE ) is used to deliver standardized tests via testing machines like desktop, laptop, and

More information

HOWTO: Set up a Vyatta device with ThreatSTOP in router mode

HOWTO: Set up a Vyatta device with ThreatSTOP in router mode HOWTO: Set up a Vyatta device with ThreatSTOP in router mode Overview This document explains how to set up a minimal Vyatta device in a routed configuration and then how to apply ThreatSTOP to it. It is

More information

Install Guide for JunosV Wireless LAN Controller

Install Guide for JunosV Wireless LAN Controller The next-generation Juniper Networks JunosV Wireless LAN Controller is a virtual controller using a cloud-based architecture with physical access points. The current functionality of a physical controller

More information

Barracuda Link Balancer

Barracuda Link Balancer Barracuda Networks Technical Documentation Barracuda Link Balancer Administrator s Guide Version 2.2 RECLAIM YOUR NETWORK Copyright Notice Copyright 2004-2011, Barracuda Networks www.barracuda.com v2.2-110503-01-0503

More information

Prestige 202H Plus. Quick Start Guide. ISDN Internet Access Router. Version 3.40 12/2004

Prestige 202H Plus. Quick Start Guide. ISDN Internet Access Router. Version 3.40 12/2004 Prestige 202H Plus ISDN Internet Access Router Quick Start Guide Version 3.40 12/2004 Table of Contents 1 Introducing the Prestige...3 2 Hardware Installation...4 2.1 Rear Panel...4 2.2 The Front Panel

More information

Cisco Network Switches Juniper Firewall Clusters

Cisco Network Switches Juniper Firewall Clusters Cisco Network Switches Juniper Firewall Clusters Cisco Network Infrastructure Cisco Network Infrastructure Core Network Consists of 4 Cisco 4506 switches 10 Gig E Fiber Optic Connections between switches

More information

Accessing RCS IBM Console in Windows Using Linux Virtual Machine

Accessing RCS IBM Console in Windows Using Linux Virtual Machine Accessing RCS IBM Console in Windows Using Linux Virtual Machine For Graphics Simulation Experiment, Real Time Applications, ECSE 4760 Quan Wang Department of ECSE, Rensselaer Polytechnic Institute March,

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

Web VTS Installation Guide. Copyright 2006-2010 SiiTech Inc. All rights reserved.

Web VTS Installation Guide. Copyright 2006-2010 SiiTech Inc. All rights reserved. Web VTS Installation Guide Copyright 2006-2010 SiiTech Inc. All rights reserved. Table of Contents Overview of Web VTS... 1 System Requirements... 2 Installation Sequence... 3 Installing Web VTS... 6 ii

More information

Storage Sync for Hyper-V. Installation Guide for Microsoft Hyper-V

Storage Sync for Hyper-V. Installation Guide for Microsoft Hyper-V Installation Guide for Microsoft Hyper-V Egnyte Inc. 1890 N. Shoreline Blvd. Mountain View, CA 94043, USA Phone: 877-7EGNYTE (877-734-6983) www.egnyte.com 2013 by Egnyte Inc. All rights reserved. Revised

More information

HP CloudSystem Enterprise

HP CloudSystem Enterprise HP CloudSystem Enterprise F5 BIG-IP and Apache Load Balancing Reference Implementation Technical white paper Table of contents Introduction... 2 Background assumptions... 2 Overview... 2 Process steps...

More information

ODP REGIONAL NODE DEPLOYMENT QUICK GUIDE FOR TRAININGS

ODP REGIONAL NODE DEPLOYMENT QUICK GUIDE FOR TRAININGS ODP REGIONAL NODE DEPLOYMENT QUICK GUIDE FOR TRAININGS Version 1.0, 23 Jan 2014 TABLE OF CONTENTS 1. Installation of images under VMware Player...3 2. Installation of images under VirtualBox...3 3. Downloading

More information

Backup & Disaster Recovery Appliance User Guide

Backup & Disaster Recovery Appliance User Guide Built on the Intel Hybrid Cloud Platform Backup & Disaster Recovery Appliance User Guide Order Number: G68664-001 Rev 1.0 June 22, 2012 Contents Registering the BDR Appliance... 4 Step 1: Register the

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013 LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...

More information

Accessing VirtualBox Guests from Host using SSH, WinSCP and Tunnelling

Accessing VirtualBox Guests from Host using SSH, WinSCP and Tunnelling Accessing VirtualBox Guests from Host using S... 1 Accessing VirtualBox Guests from Host using SSH, WinSCP and Tunnelling By Steven Gordon on Thu, 15/08/2013-3:49pm Previously I described how to setup

More information

TROUBLESHOOTING INFORMATION

TROUBLESHOOTING INFORMATION TROUBLESHOOTING INFORMATION VinNOW Support does not support Microsoft products to include SQL Server,.NET Framework, and also cannot assist with Windows User issues, Network or VPN issues. If installing

More information

Updating MNS-6K software on Magnum 6K Switches

Updating MNS-6K software on Magnum 6K Switches Updating MNS-6K software on Magnum 6K Switches Using Secure Web Management GarrettCom Inc. reserves the right to change specifications, performance characteristics and/or model offerings without notice.

More information

Backup Exec Private Cloud Services. Planning and Deployment Guide

Backup Exec Private Cloud Services. Planning and Deployment Guide Backup Exec Private Cloud Services Planning and Deployment Guide Chapter 1 Introducing Backup Exec Private Cloud Services This chapter includes the following topics: About Backup Exec Private Cloud Services

More information

HP SDN VM and Ubuntu Setup

HP SDN VM and Ubuntu Setup HP SDN VM and Ubuntu Setup Technical Configuration Guide Version: 1 September 2013 Table of Contents Introduction... 2 Option 1: VirtualBox Preconfigured Setup... 2 Option 2: VMware Setup (from scratch)...

More information

EZblue BusinessServer The All - In - One Server For Your Home And Business

EZblue BusinessServer The All - In - One Server For Your Home And Business EZblue BusinessServer The All - In - One Server For Your Home And Business Quick Start Guide Version 3.11 1 2 3 EZblue Server Overview EZblue Server Installation EZblue Server Configuration 4 EZblue Magellan

More information

Deploying Windows Streaming Media Servers NLB Cluster and metasan

Deploying Windows Streaming Media Servers NLB Cluster and metasan Deploying Windows Streaming Media Servers NLB Cluster and metasan Introduction...................................................... 2 Objectives.......................................................

More information

Addonics T E C H N O L O G I E S. NAS Adapter. Model: NASU2. 1.0 Key Features

Addonics T E C H N O L O G I E S. NAS Adapter. Model: NASU2. 1.0 Key Features 1.0 Key Features Addonics T E C H N O L O G I E S NAS Adapter Model: NASU2 User Manual Convert any USB 2.0 / 1.1 mass storage device into a Network Attached Storage device Great for adding Addonics Storage

More information

THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering

THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering THE HONG KONG POLYTECHNIC UNIVERSITY Department of Electronic and Information Engineering ENG 224 Information Technology Laboratory 6: Internet Connection Sharing Objectives: Build a private network that

More information

1:1 NAT in ZeroShell. Requirements. Overview. Network Setup

1:1 NAT in ZeroShell. Requirements. Overview. Network Setup 1:1 NAT in ZeroShell Requirements The version of ZeroShell used for writing this document is Release 1.0.beta11. This document does not describe installing ZeroShell, it is assumed that the user already

More information

ServerPronto Cloud User Guide

ServerPronto Cloud User Guide ServerPronto Cloud User Guide Virtual machines Virtual machines are based on templates and are deployed on hypervisors. Hypervisors give them access to CPU, disk and network resources. The ServerPronto

More information