Using Open Source Virtualization Technology In Computer Education. SUNY IT Master's Project By: Ronny L. Bull

Size: px
Start display at page:

Download "Using Open Source Virtualization Technology In Computer Education. SUNY IT Master's Project By: Ronny L. Bull"

Transcription

1 Using Open Source Virtualization Technology In Computer Education SUNY IT Master's Project By: Ronny L. Bull Master's Project Advisor: Geethapriya Thamilarasu, Ph.D. Date: Abstract: This paper outlines the work and research I performed while working on my Computer Science Master's Project at SUNY IT. The goal of this project was to create a scalable virtualization server cluster using Open Source technology for use by the SUNY IT Computer Science and Network Computer Security departments. The servers are to be used by students and faculty for labs, development, and research work. One server has also been dedicated to the Computer Science Network Administration department (a.k.a. The Dognet) for use in the migration of some of the current aging physical department servers to a virtual environment. A method for integrating the current Computer Science department LDAP user authentication has been provided, and virtual machines can be assigned to specific users which then can be accessed and controlled over the web via a java enabled browser. Table of Contents: 1) Virtualization Technology Overview 2) Hypervisor Options & My Choice 3) Server Hardware & Issues 4) XCP Installation 5) Setting Up ISO Image Storage 6) Extending The Default LVM VG 7) Networking,VLANS, & Firewall Rules 8) Server Management 9) Bug Workarounds 10) User Access & Authentication 11) Conclusion 12) Future Research 13) Bibliography 1) Virtualization Technology Overview: Virtualization Technology allows an organization to leverage the power of multi-core server hardware to host multiple virtual servers on a single physical host. This allows the organization to consolidate a large server farm down to a few powerful machines which have the advantage of saving space and energy costs while still retaining the same level of service that they previously relied upon. Server virtualization is made possible by

2 the use of a hypervisor which is the basic abstraction layer of software that sits directly on the hardware below any operating systems. It is responsible for CPU scheduling and memory partitioning of the various virtual machines running on the physical hardware. It not only abstracts the physical hardware for the virtual machines, but it also controls the execution of virtual machines as they share the common processing environment. The hypervisor has no knowledge of networking, external storage devices, video, or any other common I/O functions. 1 The machines that run on top of the hypervisor are broken up into two different categories: host and guest. The host operating system is a privileged virtual machine that has special rights to access physical I/O resources as well as interact with the other virtual machines running on the system. The guest operating systems have no direct access to the physical hardware on the machine, and rely on the host operating system to manage them. As a result the host operating system is required to be up and running before any guests are allowed to start. 1 2) Hypervisor Options & My Choice: Since the project only had a hardware budget I had to make due with a free and Open Source hypervisor solution. There are many virtualization products offered today, and all of the major players offer their hypervisors for free. However not all of them are Open Source, and additional costs tend to creep up to unlock functionality via separate utilities. Some of these products are; Microsoft Hyper-V, Citrix XenServer, and VMWare ESXi. Although they are all very powerful and capable products, the extra costs involved to effectively utilize them was a limiting factor. So instead I decided to use Xen, the Open Source hypervisor. Citrix bases all of it's product on the Open Source Xen hypervisor technology, and after some research I discovered that the Xen community developed an Open Source version of the Citrix XenServer called Xen Cloud Platform 3 which is basically a clone of Citrix XenServer version 5.6 FP1. It uses the same Xen API calls as Citrix XenServer, and can be managed effectively using the free Citrix XenCenter 4 virtual server management utility. Xen Cloud Platform or XCP for short is

3 a fairly new Linux distribution that runs the Xen hypervisor and a minimal CentOS Linux based host operating system (a.k.a. Domain0). Because it is so new and still considered to be in a testing state there is very little documentation available. Most of the installation and setup I performed was done by trial and error, however since XCP is based on Citrix XenServer version 5.6 FP1 I was able to reference the manual 2 for that specific product to figure out the API commands necessary to setup the servers. 3) Server Hardware Specs & Issues The project started with the construction of three identical custom built, quiet computing, rack mountable servers. The parts were ordered from the Internet, and the servers were built in house. The following hardware was used in each server: Motherboard: SUPERMICRO MBD- X9SCM-O Server Motherboard (Sandy Bridge) w/ 2 integrated 1000MB Intel NIC's Processor: Intel Xeon 3.30GHz Quad Core w/ Hyper Threading RAM: 16 GB Crucial DDR3 SDRAM ECC Unbuffered Server Memory Hard Drives: 2x Seagate Momentus XT 500GB Hybrid Hard Drive Mounts: 2x Mushkin Enhanced drive adapter bracket Rack Mount Case: Antec Take 4 + 4U With 650W Power Supply (Quiet Computing) Rack Rails: Antec 20" Side Rails Total Cost Per Server: $1, After the servers were assembled trial installations were performed and some issues were encountered. Two of the three servers were locking up repeatedly during heavy I/O usage. At first overheating was suspected but after extensive hardware stress tests and part swapping it was deduced that two out of the three motherboards were found to be faulty and were ultimately RMA'd for repair. Once the hardware was all straightened out I began installing Xen Cloud Platform 1.1 Beta on the three servers. 4) XCP Installation: I downloaded the Xen Cloud Platform 1.1 Beta ISO image from the web 6, and burned the image to a disc. I then temporarily installed

4 a CDROM drive into each server, and began the installations. The initial XCP installation was pretty straight forward. After answering a few prompts and setting up the management interface IP address settings I rebooted the server and was greeted by a panda bear floating in the clouds. The server finished booting and an ncurses based menu appeared on the screen which displayed some basic information about the server, and allowed for a few simple configuration settings to be edited as well as provided menu options to control installed virtual machines and other resources. Once the networking for the management interface had been established this menu was also accessible via SSH. partition using the entire drive, and installed the operating system on it. After the installation was completed I setup a 50GB ext3 partition on the second hard drive (/dev/sdb) in each machine to be used as a local ISO image storage repository. Once the partition was created and formatted I had to let the Xen API know about it. In order to do this I performed the following commands on each server: mkdir -p /var/opt/xen/iso_import mount /dev/sdb1 /var/opt/xen/iso_import Then I added the following entries to /etc/fstab /dev/sdb1 /var/opt/xen/iso_import ext3 defaults 0 0 Finally I had to register the new storage repository with the Xen API: xe sr-create name-label=iso_import type=iso \ device-config:location=/var/opt/xen/iso_import/ \ device-config:legacy_mode=true content-type=iso Once the above steps were performed I could place ISO images directly into /var/opt/xen/iso_import and they would become immediately available for use when installing new virtual machines using XenCenter. Figure 1: xsconsole viewed in a remote terminal via SSH. 5) Setting Up ISO Image Storage: All three servers were equipped with two 500GB hard drives. During the XCP installation I chose for it to only use the first hard drive (/dev/sda). It created an LVM 6) Extending The Default LVM VG: After creating the ISO storage repository on the first partition of the second hard disk (/dev/sdb1) I still had 450GB of free space left to use. I decided to extend the default LVM volume group that was setup on the first hard

5 disk (/dev/sda) to include the rest of the space available on the second drive. This would give each server an additional 450GB of space to house additional virtual machines rather than just using the 500GB from the first hard drive. Whenever a new virtual machine is created the Xen API creates a new LVM partition within the Default Volume Group of the size requested by the user. The use of LVM provides a scalable storage solution that allows for the addition of extra hard disks down the road. To add the rest of the second hard drive to the Default LVM Volume Group I created another partition on the second hard disk using fdisk and set it to type 8e which is LinuxLVM. I then used the following commands to extend the Default LVM Volume Group to /dev/sdb2. First I had to create the physical volume: pvcreate /dev/sdb1 Then I needed to find out the name of the Default LVM Volume Group: pvdisplay Which returned a few lines of information, of which I was interested in the VG Name: VG Name VG_XenStorage-be47438c-f310-dcf6-744e- 651ba2bfaff9 I then added the newly crated physical volume to the existing volume group: vgextend /dev/vg_xenstorage-be47438c-f310-dcf6-744e- 651ba2bfaff9 /dev/sdb1 After running the vgs command I was able to verify that the additional 450GB was added to the Default Volume Group. 7) Networking, VLANS, & Firewall Rules Once the storage was all setup I had to configure the networking and firewall rules for each interface. The first network interface was assigned at installation to be used as the management port, and was put on the CSAdmin subnet. Firewall rules were setup that only allow access to the management interface by authorized administrators and the web access appliance. The management interface is the only interface that allows the use of API calls over it, and by locking access down to authorized users and appliances only it prevents unauthorized users from making changes to the system. The second network card was connected to a VLAN trunked port on the switch, and setup to be used by the virtual machines for network traffic. Multiple VLANS were created and bound to it for the machines to be assigned to. By using VLANS on the second interface virtual machines are able to be placed on different subnets depending on their use and

6 who they are assigned to. Multiple VLANS were created on each server by using the following commands: First I created a new network with a label: xe network-create name-label=network201 This returned a unique ID: d14427c db1-7d96-f55434af319e Then I assigned the VLAN tag 201 to this network and bound it to the physical interface eth1. xe vlan-create network-uuid=85a9aba5-73ea a28-395c96be30fd \ pif-uuid=e602777f-b4e9-e c47c434 vlan=201 Once all of the VLANS were created and assigned to the physical interface eth1 I needed to assign eth1 itself to a VLAN and setup some necessary firewall rules so it could pass network traffic and respond to requests. To configure eth1 I performed the following command: xe pif-reconfigure-ip uuid=d14427c db1-7d96- f55434af319e \ mode=static IP= netmask= \ gateway= DNS= eth1 was assigned to VLAN 201 and was given a static IP address on the student subnet. 8) Server Management I now had three identical servers with Xen Cloud Platform 1.1 Beta installed, storage setup, and networking configured. One thing to note here is that I could not simply clone the first machine after it was complete in order to produce the second and third servers. Every resource registered in the Xen API is assigned a unique ID that would complicate things immensely if the machines were just clones of an original. All three machines would be setup with the exact same UUID's for each resource it held. So each machine had to be individually setup from scratch. To manage these servers Citrix XenCenter 4 was installed on the administrator workstation Tolmin in the Dognet Lounge, and firewall rules were added that allowed Tolmin to connect to the management interfaces on each server. XenCenter allows an administrator to connect to multiple XenServer based servers and remotely manage them through a single application. The application lets the administrator create, export, import, connect to, and manage virtual machines. It also allows the administrator to manage server resources, take snapshots of virtual machines, create templates from existing virtual machines, and fine tune virtual machine configurations and CPU priority. The three servers were added to XenCenter and I configured three server pools

7 to assign the servers to; CSAdmin, NCS- Student, & CS-Student. Xen1 was assigned to the CSAdmin pool to be used by the CSAdmin department to migrate servers to. Xen2 was assigned to the NCS-Student pool to be used to house virtual machines that the NCS students will use in labs. Xen3 was added to the CS- Student pool to be used by CS students for labs, research, and development work. Due to the scalability of the project more servers are expected to be added to these pools as they become available from ITS. 9) Bug Workarounds: While setting up the server cluster I encountered a few bugs with the XCP software. I was able to come up with workarounds that I submitted to the XCP developers for consideration, and to make them aware of the glitches. The first issue I encountered was when I tried to install a new Linux virtual machine using one of the included Linux templates. I found that every Linux template I tried would not allow me to boot to the installation CDROM even if I specified it as the default boot device. It turned out that there is a bug in all of the Linux templates that causes them not to set the boot priority upon virtual machine creation. To get by this issue you can use the Other Installation Media template to install any Linux distribution, or an already created virtual machine can be fixed by doing the following at the command line: xe vm-param-set uuid=<vm UUID> HVM-boot-policy=BIOS\ order HVM-boot-params:order="dc" Where VM UUID is the UUID returned for the specific virtual machine when using the xe vm-list command. What this command does it it sets the boot order for the virtual machine to 'dc' (CDROM then hard drive). The second bug I encountered took 30 days to show itself, it had to do with licensing. XCP is supposed to be free and Open Source software with no license restrictions, however when the developers were porting XenServer they neglected to remove the license file that corresponded to it and since XenServer has a trial license of 30 days that also applied to XCP. To fix this issue I simply had to stop the Xen API service and edit the file /var/xapi/state.db. In that file there is a field called expiry, setting that variable to 30 days in the future fixes the license issue temporarily. This bug is supposed to be fixed in the next XCP update but for the

8 time being I wrote a bash script that does it automatically. The last bug I encountered was similar to the second. Whenever an administrator tried to take a snapshot of a virtual machine from XenCenter on Tolmin they would get an error that stated: Snapshots require XenServer 5.5 or later. This seemed a bit strange since XCP was based on XenServer 5.6 FP1. It turned out that the Xen API needed to be fooled again. I had to stop the Xen API service then edit the file /opt/xensource/bin/xapi and changed the version variable from to Restarting the service after the change allowed snapshots to be taken from XenCenter on Tolmin. This fix does not persist after an update to XCP so I created a simple script that can be run to make the change after an update. 10) User Access & Authentication: Once all of the servers were setup and the bugs were squashed I had to setup a way for administrators to be able to provision virtual machines to individual users, and allow those users to access their virtual machines via a web page by authenticating with their CS LDAP credentials. After trying a few different approaches I settled on an Open Source project called XVP Appliance 6 which was designed to be a drop in virtual machine that could be used to access virtual machines securely over the web that were hosted on Citrix XenServer and XCP servers. To install the appliance I simply imported it into the Xen1 server, fired it up, changed the hostname to xen1-web, and gave it an IP address on the student subnet. I had to create rules on the firewalls to allow traffic to access it as well as give it access to the management ports on all of the Xen servers. Then I set it up to use the CS LDAP server for authentication. Once the initial configuration changes were made I was able to use a command line utility to add the three server pools to the appliance, which also added the corresponding virtual machines that were assigned to each pool. Users were also added via the utility simply by going to the user menu and typing in a CS LDAP user name to add to the system, then assigning that user a virtual machine from a pool. Access rights are used on a per machine basis to allow for fine grained control on who gets to do what with each virtual machine.

9 Once a user has been setup in the system they can visit in a java enabled browser to access their virtual machines. Upon visiting the site the user is prompted for their authentication credentials, then is displayed with a list of virtual machines that they have access to. Controls are provided that allow the user to start, shutdown, and restart each machine. They also can gain console access to their machines through the interface. All virtual machine console communication is done over the standard VNC port 5900 from the web server to the host server the virtual machine resides on. The end user only needs access to port 443 on the web server for secure http communication. Figure 3: XVP Appliance console view of a Windows XP VM 11) Conclusion: Xen Cloud Platform proved to be a stable and robust competitor to the other enterprise level virtualization options that are currently offered. It offers a low cost (hardware only) highly scalable solution to server virtualization, and allows for the creation of Windows, Linux, and FreeBSD guests. The addition of a web based end user interface and LDAP authentication provides a secure way for students and faculty to access their virtual machines from anywhere they have internet access (provided that a proper firewall rule is Figure 2: XVP Appliance Administrator View created). VLAN networking also allows administrators to make certain that virtual machines are assigned to the proper subnets, and that no machines are put on a subnet where they can do harm to production servers and desktops. In addition lab environments can be

10 consolidated, and students can now each have their own set of virtual machines to work with rather than sharing, maximizing their learning experience. 12) Future Research: This project has opened my eyes to the some possible research opportunities in the realm of virtualization. Once such area that could be investigated is how to effectively optimize virtual machine resources so that you could maximize the amount of virtual machines you could have running on a single host. Currently each of the servers is outfitted with 16GB of RAM (upgradable to 32GB). Each running virtual machine consumes a fixed amount of RAM that it was allocated upon creation. If the sum of all of the running virtual machines memory comes close to or exceeds the 16GB limit then no new machines can be started. Finding a way to optimize the amount of RAM allocated to each machine would be beneficial in allowing more machines to be running on the server at a single time. These numbers would have to be figured on a per machine basis based on priority, Operating general guidelines could be established to help optimize installed virtual machines in order to maximize the amount of running virtual machines on a single host at a one time. 13) Bibliography: 1) Xen Overview: XenWork.pdf 2) Citrix XenServer 5.6 Feature Pack 1 Administrator's Guide ) Xen Cloud Platform: 4) Citrix XenCenter: encenter 5) XCP Download: 6) XVP Appliance: topic=about&page=xvpappliance 7) My notes in more detail: System usage, load, and purpose. However

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

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

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

Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS

Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS Quick Start Guide VX VIRTUAL APPLIANCES If you re not using Citrix XenCenter 6.0, your screens may vary. Citrix XenServer Hypervisor Server Mode (Single-Interface Deployment) 2013 Silver Peak Systems,

More information

VELOCITY. Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS

VELOCITY. Quick Start Guide. Citrix XenServer Hypervisor. Server Mode (Single-Interface Deployment) Before You Begin SUMMARY OF TASKS If you re not using Citrix XenCenter 6.0, your screens may vary. VELOCITY REPLICATION ACCELERATOR Citrix XenServer Hypervisor Server Mode (Single-Interface Deployment) 2013 Silver Peak Systems, Inc. This

More information

If you re not using Citrix XenCenter 6.0, your screens may vary. Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0

If you re not using Citrix XenCenter 6.0, your screens may vary. Required Virtual Interface Maps to... mgmt0. virtual network = mgmt0 wan0 If you re not using Citrix XenCenter 6.0, your screens may vary. VXOA VIRTUAL APPLIANCES Citrix XenServer Hypervisor In-Line Deployment (Bridge Mode) 2012 Silver Peak Systems, Inc. Support Limitations

More information

VX 9000E WiNG Express Manager INSTALLATION GUIDE

VX 9000E WiNG Express Manager INSTALLATION GUIDE VX 9000E WiNG Express Manager INSTALLATION GUIDE 2 VX 9000E WiNG Express Manager Service Information If you have a problem with your equipment, contact support for your region. Support and issue resolution

More information

Virtual Appliance Setup Guide

Virtual Appliance Setup Guide The Virtual Appliance includes the same powerful technology and simple Web based user interface found on the Barracuda Web Application Firewall hardware appliance. It is designed for easy deployment on

More information

Aerohive Networks Inc. Free Bonjour Gateway FAQ

Aerohive Networks Inc. Free Bonjour Gateway FAQ Aerohive Networks Inc. Free Bonjour Gateway FAQ 1. About the Product... 1 2. Installation... 2 3. Management... 3 4. Troubleshooting... 4 1. About the Product What is the Aerohive s Free Bonjour Gateway?

More information

Quick Start Guide for VMware and Windows 7

Quick Start Guide for VMware and Windows 7 PROPALMS VDI Version 2.1 Quick Start Guide for VMware and Windows 7 Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the

More information

Citrix XenServer Product Frequently Asked Questions

Citrix XenServer Product Frequently Asked Questions Citrix XenServer Product FAQ Citrix XenServer Product Frequently Asked Questions Version 4.0.1i Citrix XenServer FAQ 4.01i 2 New Features... 3 Hardware Support... 3 Product Limits... 6 Virtual Machine

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

Installation Guide for Citrix XenServer 5.5

Installation Guide for Citrix XenServer 5.5 white paper Installation Guide for Citrix XenServer 5.5 Title: Installation Guide for Citrix XenServer 5.5 Author(s): Xtravirt (Paul Buckle) Target Audience: Technical - Novice Current Revision: 1.0 (Jul

More information

CommandCenter Secure Gateway

CommandCenter Secure Gateway CommandCenter Secure Gateway Quick Setup Guide for CC-SG Virtual Appliance - VMware, XEN, HyperV This Quick Setup Guide explains how to install and configure the CommandCenter Secure Gateway. For additional

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

Barracuda Message Archiver Vx Deployment. Whitepaper

Barracuda Message Archiver Vx Deployment. Whitepaper Barracuda Message Archiver Vx Deployment Whitepaper Document Scope This document provides guidance on designing and deploying Barracuda Message Archiver Vx on VMware vsphere Document Scope, and Microsoft

More information

Unitrends Virtual Backup Installation Guide Version 8.0

Unitrends Virtual Backup Installation Guide Version 8.0 Unitrends Virtual Backup Installation Guide Version 8.0 Release June 2014 7 Technology Circle, Suite 100 Columbia, SC 29203 Phone: 803.454.0300 Contents Chapter 1 Getting Started... 1 Version 8 Architecture...

More information

Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015)

Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Deploying a Virtual Machine (Instance) using a Template via CloudStack UI in v4.5.x (procedure valid until Oct 2015) Access CloudStack web interface via: Internal access links: http://cloudstack.doc.ic.ac.uk

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

BLACK BOX. Quick Start Guide. Virtual Central Management System (VCMS) Works with LES Series Console Servers. LES-VCMS. Customer Support Information

BLACK BOX. Quick Start Guide. Virtual Central Management System (VCMS) Works with LES Series Console Servers. LES-VCMS. Customer Support Information LES-VCMS Virtual Central Management System (VCMS) Quick Start Guide Works with LES Series Console Servers. BLACK BOX Customer Support Information Order toll-free in the U.S.: Call 877-877-BBOX (outside

More information

Operating System Installation Guidelines

Operating System Installation Guidelines Operating System Installation Guidelines The following document guides you step-by-step through the process of installing the operating systems so they are properly configured for boot camp. The document

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

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

Evaluation of Multi-Hypervisor Management with HotLink SuperVISOR

Evaluation of Multi-Hypervisor Management with HotLink SuperVISOR White Paper White Paper Managing Public Cloud Computing in the Enterprise Evaluation of Multi-Hypervisor Management with HotLink SuperVISOR A Quick Start Guide By David Davis vexpert 1 Table of Contents

More information

Virtual Appliance Setup Guide

Virtual Appliance Setup Guide Virtual Appliance Setup Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

Quick Start Guide for Parallels Virtuozzo

Quick Start Guide for Parallels Virtuozzo PROPALMS VDI Version 2.1 Quick Start Guide for Parallels Virtuozzo Rev. 1.1 Published: JULY-2011 1999-2011 Propalms Ltd. All rights reserved. The information contained in this document represents the current

More information

VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager

VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager VMTurbo Operations Manager 4.5 Installing and Updating Operations Manager VMTurbo, Inc. One Burlington Woods Drive Burlington, MA 01803 USA Phone: (781) 373---3540 www.vmturbo.com Table of Contents Introduction

More information

Rally Installation Guide

Rally Installation Guide Rally Installation Guide Rally On-Premises release 2015.1 [email protected] www.rallydev.com Version 2015.1 Table of Contents Overview... 3 Server requirements... 3 Browser requirements... 3 Access

More information

Cloud.com CloudStack Installation Guide

Cloud.com CloudStack Installation Guide Cloud.com CloudStack Installation Guide Version 2.2 early access release November 20, 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, CloudStack, Hypervisor Attached

More information

Ensure that the server where you install the Primary Server software meets the following requirements: Item Requirements Additional Details

Ensure that the server where you install the Primary Server software meets the following requirements: Item Requirements Additional Details ZENworks 11 SP3 System December 2014 The following sections provide the Novell ZENworks 11 SP3 requirements for hardware and software: Section 1, Primary Server, on page 1 Section 2, Managed Device, on

More information

Installation Guide C-MOR Video Surveillance on XenServer from version 6.2

Installation Guide C-MOR Video Surveillance on XenServer from version 6.2 This Guide will show you the installation of C-MOR Video Surveillance on a Citrix XenServer from Version 6.2. You are able to download the XenServer on http://www.xenserver.org. Also you need the C-MOR

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

GRAVITYZONE UNIFIED SECURITY MANAGEMENT

GRAVITYZONE UNIFIED SECURITY MANAGEMENT GRAVITYZONE UNIFIED SECURITY MANAGEMENT Quick Start Guide GravityZone Unified Security Management Quick Start Guide Publication date 2013.02.22 Copyright 2013 Bitdefender Legal Notice All rights reserved.

More information

Aspen Cloud Server Management Console

Aspen Cloud Server Management Console Aspen Cloud Server Management Console Management of Cloud Server Resources Power All Networks Ltd. User Guide June 2011, version 1.1.1 Refer to ICP V1.1 PAGE 1 Table of Content 1. Introduction... 4 2.

More information

Amazon EC2 XenApp Scalability Analysis

Amazon EC2 XenApp Scalability Analysis WHITE PAPER Citrix XenApp Amazon EC2 XenApp Scalability Analysis www.citrix.com Table of Contents Introduction...3 Results Summary...3 Detailed Results...4 Methods of Determining Results...4 Amazon EC2

More information

Deskpool Quick Start. Version: V2.1.x. Based on Hyper-V Server 2012 R2. Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com)

Deskpool Quick Start. Version: V2.1.x. Based on Hyper-V Server 2012 R2. Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com) Deskpool Quick Start Based on Hyper-V Server 2012 R2 Version: V2.1.x Shenzhen Jieyun Technology Co., Ltd (www.jieyung.com) Last updated on March 18, 2015 Copyright Shenzhen Jieyun Technology Co., Ltd.

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

RSA Authentication Manager 8.1 Setup and Configuration Guide. Revision 2

RSA Authentication Manager 8.1 Setup and Configuration Guide. Revision 2 RSA Authentication Manager 8.1 Setup and Configuration Guide Revision 2 Contact Information Go to the RSA corporate website for regional Customer Support telephone and fax numbers: www.emc.com/domains/rsa/index.htm

More information

XenApp 7.7 Deployment ISO. 5 th January 2016

XenApp 7.7 Deployment ISO. 5 th January 2016 5 th January 2016 Document Details Document Name Author DG Version 1.0 Date 5th January 2016 Status Released Document History Date Modification Details 5/01/2016 N/A First Release Contents 1. Introduction...

More information

Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide. Published Monday, 17 January 2011 1.2 Edition

Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide. Published Monday, 17 January 2011 1.2 Edition Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide Published Monday, 17 January 2011 1.2 Edition Citrix XenServer 5.6 Feature Pack 1 Quick Start Guide Copyright 2011 Citrix Systems. Inc. All Rights

More information

Enabling Technologies for Distributed Computing

Enabling Technologies for Distributed Computing Enabling Technologies for Distributed Computing Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS School of Computing, UNF Multi-core CPUs and Multithreading Technologies

More information

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V

NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V NETFORT LANGUARDIAN INSTALLING LANGUARDIAN ON MICROSOFT HYPER V Instructions apply to installs on Windows Server 2012 R2 Before you begin When deployed in a Hyper V environment, LANGuardian will capture

More information

ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy

ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy OVERVIEW The global communication and the continuous growth of services provided through the Internet or local infrastructure require to

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

Enabling Technologies for Distributed and Cloud Computing

Enabling Technologies for Distributed and Cloud Computing Enabling Technologies for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Multi-core CPUs and Multithreading

More information

Installing and Configuring Windows Server 2008. Module Overview 14/05/2013. Lesson 1: Planning Windows Server 2008 Installation.

Installing and Configuring Windows Server 2008. Module Overview 14/05/2013. Lesson 1: Planning Windows Server 2008 Installation. Installing and Configuring Windows Server 2008 Tom Brett Module Overview Planning Windows Server 2008 Installations Performing a Windows Server 2008 Installation Configuring Windows Server 2008 Following

More information

About the VM-Series Firewall

About the VM-Series Firewall About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/

More information

Release Notes. Software Versions and Hardware Supported

Release Notes. Software Versions and Hardware Supported everrun Release Notes NOTE: For the most recent documentation and updates, please log in to the everrun customer web portal and download the latest versions. The link is: http://www.stratus.com/stratus/home/services/customersupport

More information

Software SIParator / Firewall

Software SIParator / Firewall Orientation and Installation Guide for the Ingate SBC and E-SBC Software SIParator / Firewall for Virtual x86 Machines For the Ingate Software SIParators using software release 5.0.6 or later Revision

More information

Xen Cloud Platform Update

Xen Cloud Platform Update Xen Cloud Platform Update John Garbutt Senior Software Developer, Cloud, Citrix @johngarbutt What is Xen Cloud Platform? The Xen Hypervisor was designed for the Cloud straight from the outset! What is

More information

October 2011. Gluster Virtual Storage Appliance - 3.2 User Guide

October 2011. Gluster Virtual Storage Appliance - 3.2 User Guide October 2011 Gluster Virtual Storage Appliance - 3.2 User Guide Table of Contents 1. About the Guide... 4 1.1. Disclaimer... 4 1.2. Audience for this Guide... 4 1.3. User Prerequisites... 4 1.4. Documentation

More information

Create a virtual machine at your assigned virtual server. Use the following specs

Create a virtual machine at your assigned virtual server. Use the following specs CIS Networking Installing Ubuntu Server on Windows hyper-v Much of this information was stolen from http://www.isummation.com/blog/installing-ubuntu-server-1104-64bit-on-hyper-v/ Create a virtual machine

More information

Springpath Data Platform with Cisco UCS Servers

Springpath Data Platform with Cisco UCS Servers Springpath Data Platform with Cisco UCS Servers Reference Architecture March 2015 SPRINGPATH DATA PLATFORM WITH CISCO UCS SERVERS Reference Architecture 1.0 Introduction to Springpath Data Platform 1 2.0

More information

CloudPlatform (powered by Apache CloudStack) Version 4.2 Administrator's Guide

CloudPlatform (powered by Apache CloudStack) Version 4.2 Administrator's Guide CloudPlatform (powered by Apache CloudStack) Version 4.2 Administrator's Guide Revised September 7, 2013 10:50 pm Pacific Citrix CloudPlatform CloudPlatform (powered by Apache CloudStack) Version 4.2 Administrator's

More information

Core Protection for Virtual Machines 1

Core Protection for Virtual Machines 1 Core Protection for Virtual Machines 1 Comprehensive Threat Protection for Virtual Environments. Installation Guide e Endpoint Security Trend Micro Incorporated reserves the right to make changes to this

More information

XenDesktop Implementation Guide

XenDesktop Implementation Guide Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Implementation Guide Pooled Desktops (Local and Remote) www.citrix.com Contents Contents... 2 Overview... 4 Initial Architecture... 5 Installation

More information

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1

Virtual Appliances. Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V. Virtual Appliance Setup Guide for Umbrella Page 1 Virtual Appliances Virtual Appliances: Setup Guide for Umbrella on VMWare and Hyper-V Virtual Appliance Setup Guide for Umbrella Page 1 Table of Contents Overview... 3 Prerequisites... 4 Virtualized Server

More information

How To Install An Org Vm Server On A Virtual Box On An Ubuntu 7.1.3 (Orchestra) On A Windows Box On A Microsoft Zephyrus (Orroster) 2.5 (Orner)

How To Install An Org Vm Server On A Virtual Box On An Ubuntu 7.1.3 (Orchestra) On A Windows Box On A Microsoft Zephyrus (Orroster) 2.5 (Orner) Oracle Virtualization Installing Oracle VM Server 3.0.3, Oracle VM Manager 3.0.3 and Deploying Oracle RAC 11gR2 (11.2.0.3) Oracle VM templates Linux x86 64 bit for test configuration In two posts I will

More information

ZEN LOAD BALANCER EE v3.02 DATASHEET The Load Balancing made easy

ZEN LOAD BALANCER EE v3.02 DATASHEET The Load Balancing made easy ZEN LOAD BALANCER EE v3.02 DATASHEET The Load Balancing made easy OVERVIEW The global communication and the continuous growth of services provided through the Internet or local infrastructure require to

More information

StarWind iscsi SAN Software Hands- On Review

StarWind iscsi SAN Software Hands- On Review StarWind iscsi SAN Software Hands- On Review Luca Dell'Oca April 2011 I ve always been fascinated by those software that let you transform a computer into a SAN appliance. The available uses of this kind

More information

Virtual Appliance Installation Guide

Virtual Appliance Installation Guide > In This Chapter Document: : Installing the OpenManage Network Manager Virtual Appliance 2 Virtual Appliance Quick Start 2 Start the Virtual Machine 6 Start the Application 7 The Application is Ready

More information

CloudPlatform (powered by Apache CloudStack) Version 4.3.0.2 Administrator's Guide

CloudPlatform (powered by Apache CloudStack) Version 4.3.0.2 Administrator's Guide CloudPlatform (powered by Apache CloudStack) Version 4.3.0.2 Administrator's Guide Revised November 11, 2014 03:00 PM IST Citrix CloudPlatform CloudPlatform (powered by Apache CloudStack) Version 4.3.0.2

More information

Bosch Video Management System High availability with VMware

Bosch Video Management System High availability with VMware Bosch Video Management System High availability with VMware en Technical Note Bosch Video Management System Table of contents en 3 Table of contents 1 Introduction 4 1.1 Restrictions 4 2 Overview 5 3

More information

In order to upload a VM you need to have a VM image in one of the following formats:

In order to upload a VM you need to have a VM image in one of the following formats: What is VM Upload? 1. VM Upload allows you to import your own VM and add it to your environment running on CloudShare. This provides a convenient way to upload VMs and appliances which were already built.

More information

Virtualization Management the ovirt way

Virtualization Management the ovirt way ovirt introduction FOSDEM 2013 Doron Fediuck Red Hat What is ovirt? Large scale, centralized management for server and desktop virtualization Based on leading performance, scalability and security infrastructure

More information

Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures. Goliath Performance Monitor Installation Guide v11.

Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures. Goliath Performance Monitor Installation Guide v11. Consolidated Monitoring, Analysis and Automated Remediation For Hybrid IT Infrastructures Goliath Performance Monitor Installation Guide v11.5 (v11.5) Document Date: March 2015 www.goliathtechnologies.com

More information

Acronis Backup & Recovery 11.5

Acronis Backup & Recovery 11.5 Acronis Backup & Recovery 11.5 Update 2 Installation Guide Applies to the following editions: Advanced Server Server for Windows Virtual Edition Server for Linux Advanced Server SBS Edition Workstation

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

RSA Authentication Manager 8.1 Virtual Appliance Getting Started

RSA Authentication Manager 8.1 Virtual Appliance Getting Started RSA Authentication Manager 8.1 Virtual Appliance Getting Started Thank you for purchasing RSA Authentication Manager 8.1, the world s leading two-factor authentication solution. This document provides

More information

Comparing Free Virtualization Products

Comparing Free Virtualization Products A S P E I T Tr a i n i n g Comparing Free Virtualization Products A WHITE PAPER PREPARED FOR ASPE BY TONY UNGRUHE www.aspe-it.com toll-free: 877-800-5221 Comparing Free Virtualization Products In this

More information

Intro to Virtualization

Intro to Virtualization Cloud@Ceid Seminars Intro to Virtualization Christos Alexakos Computer Engineer, MSc, PhD C. Sysadmin at Pattern Recognition Lab 1 st Seminar 19/3/2014 Contents What is virtualization How it works Hypervisor

More information

Syncplicity On-Premise Storage Connector

Syncplicity On-Premise Storage Connector Syncplicity On-Premise Storage Connector Implementation Guide Abstract This document explains how to install and configure the Syncplicity On-Premise Storage Connector. In addition, it also describes how

More information

Barracuda Message Archiver Vx Deployment. Whitepaper

Barracuda Message Archiver Vx Deployment. Whitepaper Barracuda Message Archiver Vx Deployment Whitepaper Document Scope This document provides guidance on designing and deploying Barracuda Message Archiver Vx on VMware vsphere Document Scope, and Microsoft

More information

Security. Environments. Dave Shackleford. John Wiley &. Sons, Inc. s j}! '**»* t i j. l:i. in: i««;

Security. Environments. Dave Shackleford. John Wiley &. Sons, Inc. s j}! '**»* t i j. l:i. in: i««; Security N Environments '' J J H -. i ^ s j}! Dave Shackleford '**»* t i j i««; l:i in: John Wiley &. Sons, Inc. Contents Introduction.. : xix Chapter l Fundamentals of Virtualization Security Virtualization

More information

Citrix Lab Manager 3.6 SP 2 Quick Start Guide

Citrix Lab Manager 3.6 SP 2 Quick Start Guide WHITE PAPER Citrix Essentials for Microsoft Hyper-V Citrix Lab Manager 3.6 SP 2 Quick Start Guide www.citrix.com Contents Document Summary... 3 Preparation... 3 Architectural Review of Lab Manager... 3

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

About the VM-Series Firewall

About the VM-Series Firewall About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.1 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/

More information

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux

More information

Parallels Cloud Server 6.0 Readme

Parallels Cloud Server 6.0 Readme Parallels Cloud Server 6.0 Readme Copyright 1999-2012 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Contents About This Document... 3 About Parallels Cloud Server 6.0... 3 What's

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

Getting Started with ESXi Embedded

Getting Started with ESXi Embedded ESXi 4.1 Embedded vcenter Server 4.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent

More information

User's Guide - Beta 1 Draft

User's Guide - Beta 1 Draft IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Hyper-V Server Agent vnext User's Guide - Beta 1 Draft SC27-2319-05 IBM Tivoli Composite Application Manager for Microsoft

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

A Highly Versatile Virtual Data Center Ressource Pool Benefits of XenServer to virtualize services in a virtual pool

A Highly Versatile Virtual Data Center Ressource Pool Benefits of XenServer to virtualize services in a virtual pool A Highly Versatile Virtual Data Center Ressource Pool Benefits of XenServer to virtualize services in a virtual pool Stefan Bujack A Highly Versatile Virtual Data Center Ressource Pool Umeå, 27.05.09 Overview

More information

PARALLELS SERVER 4 BARE METAL README

PARALLELS SERVER 4 BARE METAL README PARALLELS SERVER 4 BARE METAL README This document provides the first-priority information on Parallels Server 4 Bare Metal and supplements the included documentation. TABLE OF CONTENTS 1 About Parallels

More information

Alinto Mail Server Pro

Alinto Mail Server Pro Alinto Mail Server Pro Installation Guide Alinto Version 2.0.1 Index 1. Introduction....................................................................................... 1 2. Prerequisites......................................................................................

More information

App Orchestration Setup Checklist

App Orchestration Setup Checklist App Orchestration Setup Checklist This checklist is a convenient tool to help you plan and document your App Orchestration deployment. Use this checklist along with the Getting Started with Citrix App

More information

VM-Series Firewall Deployment Tech Note PAN-OS 5.0

VM-Series Firewall Deployment Tech Note PAN-OS 5.0 VM-Series Firewall Deployment Tech Note PAN-OS 5.0 Revision A 2012, Palo Alto Networks, Inc. www.paloaltonetworks.com Contents Overview... 3 Supported Topologies... 3 Prerequisites... 4 Licensing... 5

More information

Installing and Using the vnios Trial

Installing and Using the vnios Trial Installing and Using the vnios Trial The vnios Trial is a software package designed for efficient evaluation of the Infoblox vnios appliance platform. Providing the complete suite of DNS, DHCP and IPAM

More information

NetScaler VPX FAQ. Table of Contents

NetScaler VPX FAQ. Table of Contents NetScaler VPX FAQ Table of Contents Feature and Functionality Frequently Asked Questions... 2 Pricing and Packaging Frequently Asked Questions... 4 NetScaler VPX Express Frequently Asked Questions... 5

More information

RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES

RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS Server virtualization offers tremendous benefits for enterprise IT organizations server

More information

Parallels Cloud Server 6.0

Parallels Cloud Server 6.0 Parallels Cloud Server 6.0 Readme September 25, 2013 Copyright 1999-2013 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Contents About This Document... 3 About Parallels Cloud Server

More information

Module 4 - Introduction to XenServer Storage Repositories

Module 4 - Introduction to XenServer Storage Repositories Module 4 - Introduction to XenServer Storage Repositories Page 1 Table of contents Scenario... 3 Exercise 1: Creating an NFS Storage Repository... 4 Exercise 2: Probing an Storage Repository... 9 Exercise

More information

3.0 CDN 3.0 OnApp CDN Activation and Setup Guide Author: Version: Date:

3.0 CDN 3.0 OnApp CDN Activation and Setup Guide Author: Version: Date: 3.0 CDN 3.0 OnApp CDN Activation and Setup Guide Author: Version: Date: admin 2 24-Apr-2015 10:00 Table of Contents 1 The OnApp Dashboard 5 2 How your CDN Account Works 6 3 Hardware & Marketplace Requirements

More information

Remote PC Guide Series - Volume 1

Remote PC Guide Series - Volume 1 Introduction and Planning for Remote PC Implementation with NETLAB+ Document Version: 2016-02-01 What is a remote PC and how does it work with NETLAB+? This educational guide will introduce the concepts

More information

Acronis Backup & Recovery 10 Workstation. Installation Guide

Acronis Backup & Recovery 10 Workstation. Installation Guide Acronis Backup & Recovery 10 Workstation Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent for Windows...

More information

Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide

Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use

More information