Onboarding VMs to Cisco Metacloud

Size: px
Start display at page:

Download "Onboarding VMs to Cisco Metacloud"

Transcription

1 White Paper Onboarding VMs to Cisco Metacloud This white paper will explain the process for exporting existing virtual machines from either VMware vsphere or AWS EC2 into Cisco Metacloud. This process is fairly straightforward and customers can migrate workloads by simply using the inherent tools and capabilities of Metacloud, VMware, and AWS, respectfully. The assumption is that the reader should have a baseline understanding of the vcenter management console as well as the AWS console and EC2 API command line. In order to provide a baseline understanding of the process to export an existing virtual machine workload to a new Cisco Metacloud, this white paper will discuss the following topics: Introduction of Metacloud Supported Images in Metacloud Export VMware VM to Metacloud Export AWS EC2 VM to Metacloud VM format conversion 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 9

2 Introduction Cisco Metacloud delivers a true public cloud experience for customers on their premises and behind their own firewall. It offers full administrative control and multi-tenancy. It s a production-ready, OpenStack-based solution that Cisco engineers, deploys, upgrades, and remotely operates on the customer s behalf, 24 hours a day, 365 days a year. This managed OpenStack distribution allows our customers to deliver IT as a service to their LOBs as if the IT department were their own public cloud provider. Metacloud is truly the OpenStack easy button! After Cisco deploys the new managed OpenStack cloud, the customer is provided with an enhanced Horizon dashboard that includes tools and wizards to ease the onboarding of virtual machines. For customers who are interested in migrating existing virtual machines with Windows or Linux guest operating systems from brownfield virtualized data centers or public cloud, Metacloud offers an alternative OpenStack platform for suitable workloads. In other words, migration to Metacloud is an option for any workload supported in OpenStack. In those regards, Cisco cloud migration services or ecosystem partners can provide professional services for the purpose of large scale Metacloud onboarding. However, in many cases the customer can easily export suitable virtual machine workloads from either VMware or AWS to a managed Metacloud without assistance. The remainder of this white paper will document the included tools and features that a customer can utilize to export virtual machines from the exiting virtual machine mangers (VMMs) and APIs to OpenStack. Migrating from VMware or AWS virtual machines to a managed OpenStack cloud is compelling for customers who are concerned with their IT department s ability to support the day to day operational aspects of the cloud hypervisor while trying to foster innovation in applications or other high priority aspects of IT. Metacloud allows IT to focus on using the cloud and rapid delivery of applications versus the operational aspects of the underlying OpenStack controllers, hypervisors, and storage. Supported Images Currently Metacloud supports the following virtual machine formats and image types available to tenants to either migrate an existing virtual machine, or to spawn a new virtual machine instance in an OpenStack project: ISO (International Standards Organization) image VHD (Virtual Hard Disk) QCOW2 (QEMU Copy On Write) RAW AMI (Amazon Machine Image) VMDK (Virtual Machine Disk) Export VMware to Metacloud The process of migrating a virtual machine running Microsoft Windows or Linux guest operating systems from VMware to Metacloud is straightforward. Both vsphere client to an ESXi host and vcenter can be used to export OVF templates of the VM instance from VMware to Metacloud using VMDK. The following steps explain how to export an existing VMware virtual machine by using vsphere client from an ESXi host or from vcenter and then use the OVF and VMDK files to launch the virtual machine as an instance in Metacloud using the enhanced dashboard option Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 9

3 Figure 1. Step (1) Shut down VM Figure 2. Step (2) Export OVF Template 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 9

4 Figure 3. Step (3) Save OVF Template locally Figure 4. Step (4) Create new Image in Metacloud from OVF file 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 9

5 Figure 5. Step (5) Open OVF folder on local PC from the previous VMware export and select the VMDK file Figure 6. Step (6) Launch new instance of exported VMware virtual machine in Metacloud 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 9

6 Figure 7. Step (7) Configure OpenStack hardware and policy resources required for the instance Figure 8. Step (8) Launch instance and select the console to configure any needed changes to the guest operating system, such as static IP addresses etc Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 9

7 Export AWS to Metacloud The import/export functions of AWS are part of the EC2 API Tools that can be downloaded here: The export function of this tool can only migrate VMs from the Amazon cloud in VMDK or VHD formats aimed at their respective ESXi and Hyper-V or XenServer formats. Currently export only works for Windows Server 2003 R2 and Windows Server 2008 EC2 instances. Amazon Web Services utilizes a custom kernel on their Linux images, which makes exporting the entire virtual machine and importing it directly into Metacloud impossible. However, there are several workarounds with using other free tools (e.g., Packer) that allow you to import a Windows or Linux VM image into AWS to support exporting it later. Also as a more tedious option, you can create a new instance of the workload on Metacloud and migrate application and data base data between VMs. Please note that the EC2 API import/export function is free, while the storage that you use on the S3 storage during the migration process in not free. Detailed instructions for using EC2 API CLI to export images here: Basic Instructions: Step (1): Install AWS EC2 API CLI tools on local device (see above) Step (2): Create an Amazon S3 bucket (see link to detailed instructions above) Step (3): Export supported EC2 image (see compatibility above) At a command prompt, type the following command: ec2-create-instance-export-task instance_id e target_environment f disk_image_format -c container_format b s3_bucket instance_id The ID of the instance you want to export. target_environment VMware, Citrix, or Microsoft. disk_image_format VMDK for VMware or VHD for Microsoft Hyper-V and Citrix Xen. container_format Optionally set to OVA when exporting to VMware. s3_bucket The name of the Amazon S3 bucket to which you want to export the instance. Step (4): Repeat steps (4-7) in previous VMware to Metacloud section to upload image into Metacloud and launch a new running instance from the enhanced dashboard or API Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 9

8 Conversion Once images are exported from the originating hypervisor they can be optionally converted within OpenStack using the qemu-img convert command from the CLI. The qemu-img convert command can do conversion between multiple formats, including qcow2, QED, raw, VDI (VirtualBox), VHD (Hyper-V), and VMDK (VMware). Table 1. qemu-img format strings qcow2 (KVM, Xen) QED (KVM) raw VDI (VirtualBox) VHD (Hyper-V) VMDK (VMware) qcow2 Qed Raw Vdi Vpc vmdk This example will convert a raw image file named centos7.img to a qcow2 image file. $ qemu-img convert -f raw -O qcow2 centos7.img centos7.qcow2 Run the following command to convert a VMDK image file to a raw image file. $ qemu-img convert -f vmdk -O raw centos7.vmdk centos7.img Run the following command to convert a VMDK image file to a qcow2 image file. $ qemu-img convert -f vmdk -O qcow2 centos7.vmdk centos7.qcow2 Unified CLI In order to access the CLI, every Metacloud install comes with pre-installed instances complete with all the tools. These powerful and scriptable command line tools give you complete flexibility to manage all your cloud resources. Conclusion Metacloud offers tools and support for importing and exporting virtual machine images to and from most hypervisor platforms. In order to make this process easy for our customers, Metacloud supports both an enhanced dashboard and CLI option for onboarding workloads. The intention is to make migrating or instantiating virtual machines easy, as to allow customers to focus on using their OpenStack clouds and deploying applications rapidly. For More Information Read more about Cisco Metacloud, or contact your local account representative Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 9

9 Printed in USA 10/ Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 9 of 9

When (and how) to move applications from VMware to Cisco Metacloud

When (and how) to move applications from VMware to Cisco Metacloud White Paper When (and how) to move applications from VMware to Cisco Metacloud What You Will Learn This white paper will explain when to migrate various applications running in VMware virtual machines

More information

SaaSaMe Transport Workload Snapshot Export for. Alibaba Cloud

SaaSaMe Transport Workload Snapshot Export for. Alibaba Cloud SaaSaMe Transport Workload Snapshot Export for Alibaba Cloud Contents About This Document... 3 Revision History... 3 Workload Snapshot Export for Alibaba Cloud... 4 Workload Snapshot Export Feature...

More information

What is Cloud Computing? Cloud computing is the dynamic delivery of IT resources and capabilities as a Service over the Internet.

What is Cloud Computing? Cloud computing is the dynamic delivery of IT resources and capabilities as a Service over the Internet. 1 INTRODUCTION What is Cloud Computing? Cloud computing is the dynamic delivery of IT resources and capabilities as a Service over the Internet. Cloud computing encompasses any Subscriptionbased or pay-per-use

More information

FortiManager VM - Install Guide. Version 5.6

FortiManager VM - Install Guide. Version 5.6 FortiManager VM - Install Guide Version 5.6 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER SERVICE &

More information

Virtual Scanner Appliance User Guide. March 7, 2018

Virtual Scanner Appliance User Guide. March 7, 2018 Virtual Scanner Appliance User Guide March 7, 2018 Copyright 2012-2018 by Qualys, Inc. All Rights Reserved. Qualys and the Qualys logo are registered trademarks of Qualys, Inc. All other trademarks are

More information

VX 9000 Virtualized Controller INSTALLATION GUIDE

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

More information

FortiManager VM - Install Guide VERSION 5.4

FortiManager VM - Install Guide VERSION 5.4 FortiManager VM - Install Guide VERSION 5.4 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER SERVICE &

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

Easily Managing Hybrid IT with Transformation Technology

Easily Managing Hybrid IT with Transformation Technology White Paper White Paper Managing Public Cloud Computing in the Enterprise Easily Managing Hybrid IT with Transformation Technology A Quick Start Guide 1 Table of Contents Abstract... 3 Traditional Approaches

More information

Install Part I - Virtual - Install and Power-on the SecureAuth IdP 9.0 Virtual Appliance

Install Part I - Virtual - Install and Power-on the SecureAuth IdP 9.0 Virtual Appliance Install Part I - Virtual - Install and Power-on the SecureAuth IdP 9.0 Virtual Appliance Introduction Use this guide to install the SecureAuth IdP virtual machine into your virtual host server. To save

More information

FortiManager VM - Install Guide VERSION 5.2

FortiManager VM - Install Guide VERSION 5.2 FortiManager VM - Install Guide VERSION 5.2 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER SERVICE &

More information

Hillstone CloudEdge For Network Function Virtualization (NFV) Solutions

Hillstone CloudEdge For Network Function Virtualization (NFV) Solutions Hillstone CloudEdge For Network Function Virtualization (NFV) Solutions Introduction With the advancing technologies, business applications and operations naturally have become more dynamic in order to

More information

Managed Conversion of Guests to ovirt. Arik Hadas Senior Software Engineer Red Hat 21/8/15

Managed Conversion of Guests to ovirt. Arik Hadas Senior Software Engineer Red Hat 21/8/15 Managed Conversion of Guests to ovirt Arik Hadas Senior Software Engineer Red Hat 21/8/15 Agenda Motivation Architecture Demonstration Implementation Future work Many ways to run Virtual Machines There

More information

Cisco CSR 1000v Series Cloud Services Router Software Configuration Guide

Cisco CSR 1000v Series Cloud Services Router Software Configuration Guide Cisco CSR 1000v Series Cloud Services Router Software Configuration Guide Last Modified: 2018-06-26 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Cisco CSR 1000v Series Cloud Services Router Software Configuration Guide

Cisco CSR 1000v Series Cloud Services Router Software Configuration Guide Cisco CSR 1000v Series Cloud Services Router Software Configuration Guide Last Modified: 2018-03-23 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Hystax Acura. Cloud Migration and Disaster Recovery Solution. Hystax. All rights reserved. 1

Hystax Acura. Cloud Migration and Disaster Recovery Solution. Hystax. All rights reserved. 1 Hystax Acura Cloud Migration and Disaster Recovery Solution Hystax. All rights reserved. 1 www.hystax.com Overview Hystax is a cloud migration and Disaster Recovery company focusing on consistent replication

More information

SteelConnect Virtual Gateway Installation Guide

SteelConnect Virtual Gateway Installation Guide SteelConnect Virtual Gateway Installation Guide Version 2.8 August 2017 2017 Riverbed Technology, Inc. All rights reserved. Riverbed and any Riverbed product or service name or logo used herein are trademarks

More information

Need To Manually Uninstall Vmware Tools Hyper

Need To Manually Uninstall Vmware Tools Hyper Need To Manually Uninstall Vmware Tools Hyper V The first thing to understand when you think of a VMware to Hyper-V transition is that Do you need your tool to make a VMware backup/snapshot? to take several

More information

Installing the Cisco IOS XRv 9000 Router in VMware ESXi Environments

Installing the Cisco IOS XRv 9000 Router in VMware ESXi Environments Installing the Cisco IOS XRv 9000 Router in VMware ESXi Environments These file types are needed to install Cisco IOS XRv 9000 Router on the VMware ESXi hypervisor:.iso Used for installing the image on

More information

Getting Started Guide for SmartZone 3.4

Getting Started Guide for SmartZone 3.4 Ruckus Wireless Virtual SmartZone Getting Started Guide for SmartZone 3.4 Part Number: 800-71296-001 Rev C Published: 13 December 2017 www.ruckuswireless.com Contents Copyright Notice and Proprietary Information

More information

KASPERSKY SECURITY FOR VIRTUALIZATION LIGHT AGENT. Quick Deployment Guide.

KASPERSKY SECURITY FOR VIRTUALIZATION LIGHT AGENT. Quick Deployment Guide. KASPERSKY SECURITY FOR VIRTUALIZATION LIGHT AGENT www.kaspersky.com CONTENTS About This Guide 4 Notation Used 4 Product Components and Their Interaction 5 General Product Installation Procedure 8 Installing

More information

WatchGuard Dimension v1.1 Update 1 Release Notes

WatchGuard Dimension v1.1 Update 1 Release Notes WatchGuard Dimension v1.1 Update 1 Release Notes Build Number 442674 Revision Date March 25, 2014 WatchGuard Dimension is the next-generation cloud-ready visibility solution for our Unified Threat Management

More information

BIG-IP Virtual Edition and Cloud-Init. Version 13.0

BIG-IP Virtual Edition and Cloud-Init. Version 13.0 BIG-IP Virtual Edition and Cloud-Init Version 13.0 Table of Contents Table of Contents About Cloud-Init and BIG-IP VE...5 About Cloud-Init and BIG-IP VE...5 Hypervisors with Cloud-Init support in BIG-IP

More information

Acronis Backup Advanced Version 11.5 Update 6

Acronis Backup Advanced Version 11.5 Update 6 Acronis Backup Advanced Version 11.5 Update 6 APPLIES TO THE FOLLOWING PRODUCTS Advanced for Windows Server Advanced for Linux Server Advanced for PC Advanced for VMware / Hyper-V / RHEV / Citrix XenServer

More information

Virtual Machine Migration in heterogeneous Clouds: From OpenStack to VMWare

Virtual Machine Migration in heterogeneous Clouds: From OpenStack to VMWare Virtual Machine Migration in heterogeneous Clouds: From OpenStack to VMWare Dimitrios Kargatzis 1, Stelios Sotiriadis 1,2, Euripides G.M. Petrakis 1 1 School of Electrical and Computer Engineering, Technical

More information

FusionHub. SpeedFusion Virtual Appliance. Installation Guide Version Peplink

FusionHub. SpeedFusion Virtual Appliance. Installation Guide Version Peplink FusionHub SpeedFusion Virtual Appliance Installation Guide Version 1.1.0-5 2015 Peplink FusionHub Installation Guide Table of Contents 1. Purpose... 2 2. FusionHub License Generation... 2 3. FusionHub

More information

Install and Configure FindIT Network Manager and FindIT Network Probe on a VMware Virtual Machine

Install and Configure FindIT Network Manager and FindIT Network Probe on a VMware Virtual Machine Install and Configure FindIT Network Manager and FindIT Network Probe on a VMware Virtual Machine Objective The Cisco FindIT Network Management provides tools that help you easily monitor, manage, and

More information

IBM Security Access Manager Version 9.0 October Administration topics IBM

IBM Security Access Manager Version 9.0 October Administration topics IBM IBM Security Access Manager Version 9.0 October 2015 Administration topics IBM IBM Security Access Manager Version 9.0 October 2015 Administration topics IBM ii IBM Security Access Manager Version 9.0

More information

LINUX, WINDOWS(MCSE),

LINUX, WINDOWS(MCSE), Virtualization Foundation Evolution of Virtualization Virtualization Basics Virtualization Types (Type1 & Type2) Virtualization Demo (VMware ESXi, Citrix Xenserver, Hyper-V, KVM) Cloud Computing Foundation

More information

OSDC.de 2013 Introduction to OpenStack. Justin Clift Open Source & Standards RH 17 April 2013

OSDC.de 2013 Introduction to OpenStack. Justin Clift Open Source & Standards RH 17 April 2013 OSDC.de 2013 Introduction to OpenStack Justin Clift Open Source & Standards Team @ RH 17 April 2013 Who is Justin Clift? Senior Software Engineer @ Red Hat Generally works in technical Community Building

More information

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017 Netwrix Auditor Virtual Appliance and Cloud Deployment Guide Version: 9.5 10/25/2017 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

VMware Cloud on AWS Operations Guide. 18 July 2018 VMware Cloud on AWS

VMware Cloud on AWS Operations Guide. 18 July 2018 VMware Cloud on AWS VMware Cloud on AWS Operations Guide 18 July 2018 VMware Cloud on AWS You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

CloudEdge Deployment Guide

CloudEdge Deployment Guide Hillstone Networks, Inc. CloudEdge Deployment Guide Version 5.5R4 Copyright 2017Hillstone Networks, Inc.. All rights reserved. Information in this document is subject to change without notice. The software

More information

Carbonite Availability 8.2, Carbonite Migrate 8.2 and Carbonite Cloud Migration Supported Platforms Chart

Carbonite Availability 8.2, Carbonite Migrate 8.2 and Carbonite Cloud Migration Supported Platforms Chart Carbonite Availability 8.2, Carbonite Migrate 8.2 and Carbonite Cloud Migration Supported Platforms Chart Currently shipping products and supported platforms Contents Carbonite Availability and Carbonite

More information

VMware Integrated OpenStack User Guide. VMware Integrated OpenStack 4.1

VMware Integrated OpenStack User Guide. VMware Integrated OpenStack 4.1 VMware Integrated OpenStack User Guide VMware Integrated OpenStack 4.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

All rights reserved. All trademarks are the property of their respective owners.

All rights reserved. All trademarks are the property of their respective owners. 2017 5nine Software Inc. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

Resiliency Replication Appliance Installation Guide Version 7.2

Resiliency Replication Appliance Installation Guide Version 7.2 Resiliency Replication Appliance Installation Guide Version 7.2 DISCLAIMER IBM believes that the information in this publication is accurate as of its publication date. The information is subject to change

More information

Virtualization with Arcserve Unified Data Protection

Virtualization with Arcserve Unified Data Protection Virtualization with Arcserve Unified Data Protection Server and desktop virtualization have become very pervasive in most organizations, and not just in the enterprise. Everybody agrees that server virtualization

More information

DEEP DIVE: OPENSTACK COMPUTE

DEEP DIVE: OPENSTACK COMPUTE DEEP DIVE: OPENSTACK COMPUTE Stephen Gordon Technical Product Manager, Red Hat @xsgordon AGENDA OpenStack architecture refresher Compute architecture Instance life cycle Scaling compute

More information

CloudStack Administration Guide

CloudStack Administration Guide CloudStack Administration Guide For CloudStack Version 3.0.0 3.0.2 Revised August 16, 2012 4:41 PM 2011, 2012 Citrix Systems, Inc. All rights reserved. Specifications are subject to change without notice.

More information

Install Virtual Guest Services Greyed Out Vmm 2012

Install Virtual Guest Services Greyed Out Vmm 2012 Install Virtual Guest Services Greyed Out Vmm 2012 Forum overview for "Virtual Machine Manager General" forum on TechNet forums When I try to install the DHCPExten I receive this error:"there is a problem

More information

ANALYSIS OF VIRTUAL NETWORKS IN DATA CENTERS.

ANALYSIS OF VIRTUAL NETWORKS IN DATA CENTERS. ANALYSIS OF VIRTUAL NETWORKS IN DATA CENTERS. Ionka Gancheva, PhD student 45 Abstract: The article contains an analysis of virtual networks and technologies that are used at data centers nowadays. Many

More information

Deploy the Firepower Management Center Virtual On the AWS Cloud

Deploy the Firepower Management Center Virtual On the AWS Cloud Deploy the Firepower Management Center Virtual On the AWS Cloud Amazon Virtual Private Cloud (Amazon VPC) enables you to launch Amazon Web Services (AWS) resources into a virtual network that you define.

More information

Deploying the Cisco ASA 1000V

Deploying the Cisco ASA 1000V CHAPTER 2 This chapter includes the following sections: Information About the ASA 1000V Deployment, page 2-1 Downloading the ASA 1000V OVA File, page 2-7 Deploying the ASA 1000V Using the VMware vsphere

More information

WatchGuard Dimension v2.1.1 Update 3 Release Notes

WatchGuard Dimension v2.1.1 Update 3 Release Notes WatchGuard Dimension v2.1.1 Update 3 Release Notes Build Number 567758 Release Date 8 August 2018 Release Notes Revision Date 8 August 2018 On 8 August 2018, WatchGuard released the Dimension v2.1.1 Update

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information

Replace Single Server or Cluster

Replace Single Server or Cluster Caution Because this process is designed to work as a server replacement, you must perform it in the live environment. Cisco does not recommend doing this process on a dead net because a duplication of

More information

Oracle Communications Policy Management Cloud Installation Guide 12.3

Oracle Communications Policy Management Cloud Installation Guide 12.3 Oracle Communications Installation Procedure Oracle Communications Policy Management Cloud Installation Guide 12.3 E85332-01 July 2017 Oracle Communications Policy Management Cloud Installation Guide Copyright

More information

Acronis Backup & Recovery 11.5

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

More information

Cisco Nexus 1000V InterCloud

Cisco Nexus 1000V InterCloud Deployment Guide Cisco Nexus 1000V InterCloud Deployment Guide (Draft) June 2013 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 49 Contents

More information

WatchGuard Dimension v2.0 Update 2 Release Notes. Introducing New Dimension Command. Build Number Revision Date 13 August 2015

WatchGuard Dimension v2.0 Update 2 Release Notes. Introducing New Dimension Command. Build Number Revision Date 13 August 2015 WatchGuard Dimension v2.0 Update 2 Release Notes Build Number 483146 Revision Date 13 August 2015 On 13 August 2015, WatchGuard released Dimension v2.0 Update 2. This update resolves an issue that caused

More information

Xen and CloudStack. Ewan Mellor. Director, Engineering, Open-source Cloud Platforms Citrix Systems

Xen and CloudStack. Ewan Mellor. Director, Engineering, Open-source Cloud Platforms Citrix Systems Xen and CloudStack Ewan Mellor Director, Engineering, Open-source Cloud Platforms Citrix Systems Agenda What is CloudStack? Move to the Apache Foundation CloudStack architecture on Xen The future for CloudStack

More information

Virtual Tech Update Intercloud Fabric. Michael Petersen Systems Engineer, Cisco Denmark

Virtual Tech Update Intercloud Fabric. Michael Petersen Systems Engineer, Cisco Denmark Virtual Tech Update Intercloud Fabric Michael Petersen Systems Engineer, Cisco Denmark michaep2@cisco.com Agenda Introduction Intercloud and Intercloud Fabric Intercloud Fabric - New Features Intercloud

More information

Oracle Cloud Using Oracle Cloud Infrastructure Ravello Service

Oracle Cloud Using Oracle Cloud Infrastructure Ravello Service Oracle Cloud Using Oracle Cloud Infrastructure Ravello Service E80758-04 September 2017 Oracle Cloud Using Oracle Cloud Infrastructure Ravello Service, E80758-04 Copyright 2017, Oracle and/or its affiliates.

More information

Using a Virtual Machine for Cisco IPICS on a Cisco UCS C-Series Server

Using a Virtual Machine for Cisco IPICS on a Cisco UCS C-Series Server CHAPTER7 Using a Virtual Machine for Cisco IPICS on a Cisco UCS C-Series Server This chapter describes how to configure a virtual machine (VM) on a Cisco UCS C-Series server. You can install and operate

More information

Virtualization. ...or how adding another layer of abstraction is changing the world. CIS 399: Unix Skills University of Pennsylvania.

Virtualization. ...or how adding another layer of abstraction is changing the world. CIS 399: Unix Skills University of Pennsylvania. Virtualization...or how adding another layer of abstraction is changing the world. CIS 399: Unix Skills University of Pennsylvania April 6, 2009 (CIS 399 Unix) Virtualization April 6, 2009 1 / 22 What

More information

Virtualization from the Trenches

Virtualization from the Trenches ps i: (; v s s o r t w v h \i mioour: TECH KIS CHE INFORM AT 8LIOTHEK UNIVERSITATSBiCLIOTHEK HANNOVER

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

Stratusphere FIT and Stratusphere UX

Stratusphere FIT and Stratusphere UX Stratusphere FIT and Stratusphere UX Installation & Configuration Guide Introduction This guide has been authored by experts at Liquidware to provide information and guidance concerning the installation

More information

VMware Integrated OpenStack User Guide

VMware Integrated OpenStack User Guide VMware Integrated OpenStack User Guide VMware Integrated OpenStack 3.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

AltaVault Cloud Integrated Storage Installation and Service Guide for Virtual Appliances

AltaVault Cloud Integrated Storage Installation and Service Guide for Virtual Appliances AltaVault Cloud Integrated Storage 4.4.1 Installation and Service Guide for Virtual Appliances April 2018 215-130007_B0 doccomments@netapp.com Table of Contents 3 Contents System requirements and supported

More information

Delivering Nexenta Software-Based File Services to Cisco HyperFlex

Delivering Nexenta Software-Based File Services to Cisco HyperFlex Delivering Nexenta Software-Based File White Paper March 2019 1 Copyright 2019 Nexenta Systems, ALL RIGHTS RESERVED Notice: No part of this publication may be reproduced or transmitted in any form or by

More information

Amazon Elastic Compute Cloud

Amazon Elastic Compute Cloud Amazon Elastic Compute Cloud - By Demokloud 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Amazon EC2 Amazon Elastic Compute Cloud (Amazon EC2) is a web service that provides secure,

More information

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti S3IT: Service and Support for Science IT Cloud middleware Part2: Let s pick one cloud IaaS middleware: OpenStack Sergio Maffioletti S3IT: Service and Support for Science IT, University of Zurich http://www.s3it.uzh.ch/

More information

Wanos on XenServer. Complete Lab Setup Guide

Wanos on XenServer. Complete Lab Setup Guide Wanos on XenServer Complete Lab Setup Guide This guide explains how to deploy a complete Wanos lab on XenServer. The step-by-step guide includes steps to create Head Office and Branch Wanos VM instances

More information

Transparent Service Migration to the Cloud Clone existing VMs to CloudStack/OpenStack templates without user downtime. CloudOpen Seattle 2015

Transparent Service Migration to the Cloud Clone existing VMs to CloudStack/OpenStack templates without user downtime. CloudOpen Seattle 2015 Transparent Service Migration to the Cloud Clone existing VMs to CloudStack/OpenStack templates without user downtime CloudOpen Seattle 2015 #whoami Name: Tim Mackey Current roles: XenServer Community

More information

Easy VMware Disaster Recovery & Business Continuity in Amazon Web Services

Easy VMware Disaster Recovery & Business Continuity in Amazon Web Services White Paper White Paper Managing Public Cloud Computing in the Enterprise Easy VMware Disaster Recovery & Business Continuity in Amazon Web Services A Quick Start Guide For the Price of Basic Backup By

More information

Cisco Cloud Services Router 1000V with Cisco IOS XE Software Release 3.13

Cisco Cloud Services Router 1000V with Cisco IOS XE Software Release 3.13 Q&A Cisco Cloud Services Router 1000V with Cisco IOS XE Software Release 3.13 Q. What is the Cisco Cloud Services Router 1000V? A. The Cisco Cloud Services Router 1000V (CSR 1000V) is a router in virtual

More information

An Introduction to Red Hat Enterprise Linux OpenStack Platform. Rhys Oxenham Field Product Manager, Red Hat

An Introduction to Red Hat Enterprise Linux OpenStack Platform. Rhys Oxenham Field Product Manager, Red Hat An Introduction to Red Hat Enterprise Linux OpenStack Platform Rhys Oxenham Field Product Manager, Red Hat What is OpenStack? What is OpenStack? Fully open source cloud operating system Comprised of several

More information

Data Center and Cloud Automation

Data Center and Cloud Automation Data Center and Cloud Automation Tanja Hess Systems Engineer September, 2014 AGENDA Challenges and Opportunities Manual vs. Automated IT Operations What problem are we trying to solve and how do we solve

More information

Acronis Hybrid Cloud Architecture Unified Centralized Data Protection Web-based User Interface Deployed On-premises or in the Cloud.

Acronis Hybrid Cloud Architecture Unified Centralized Data Protection Web-based User Interface Deployed On-premises or in the Cloud. Acronis Hybrid Cloud Architecture Unified Centralized Data Protection Web-based User Interface Deployed On-premises or in the Cloud A PUBLIC Any Deploy ment UBER VENDOR Any Workload ON-PREMISES PHYSICAL

More information

Setting Up Cisco Prime LMS for High Availability, Live Migration, and Storage VMotion Using VMware

Setting Up Cisco Prime LMS for High Availability, Live Migration, and Storage VMotion Using VMware CHAPTER 5 Setting Up Cisco Prime LMS for High Availability, Live Migration, and Storage VMotion Using VMware This chapter explains setting up LMS for High Availability (HA), Live migration, and, Storage

More information

Course Outline. Module 1: Microsoft Azure for AWS Experts Course Overview

Course Outline. Module 1: Microsoft Azure for AWS Experts Course Overview Course Outline Module 1: Microsoft Azure for AWS Experts Course Overview In this module, you will get an overview of Azure services and features including deployment models, subscriptions, account types

More information

Technical Brief. Adding Zadara Storage to VMware Cloud on AWS

Technical Brief. Adding Zadara Storage to VMware Cloud on AWS Technical Brief Adding Zadara Storage to VMware Cloud on AWS Revision History Row Version Date Description 1 1.0 26 Nov 2018 Initial release 2 1.1 15 Jan 2019 Updates for VMware style guide compliance,

More information

customer FAQs CLOUD NATIVE INFRASTRUCTURE Service Instances (VMs) information contained in a virtual machine disk image.

customer FAQs CLOUD NATIVE INFRASTRUCTURE Service Instances (VMs) information contained in a virtual machine disk image. CLOUD NATIVE INFRASTRUCTURE Service Q What is the service? Cloud Native Infrastructure from UKCloud is an OpenStack powered Infrastructure as a Service (IaaS) offering which enables organisations to rapidly

More information

Easy Setup Guide. Cisco FindIT Network Probe. You can easily set up your FindIT Network Probe in this step-by-step guide.

Easy Setup Guide. Cisco FindIT Network Probe. You can easily set up your FindIT Network Probe in this step-by-step guide. Cisco FindIT Network Probe Easy Setup Guide You can easily set up your FindIT Network Probe in this step-by-step guide. 1 5 System Requirements Installing Probe Configuring Probe Using Probe Connecting

More information

Backup and Restore System

Backup and Restore System Disaster Backup and Recovery, page 1 Short-Term Backup and Recovery, page 4 Disaster Backup and Recovery To minimize the effects of a disaster, you must create a disaster recovery plan to minimize downtime

More information

Comparing Function of OpenStack and VMware. Li-qiu JIANG and Da-wei XIAO

Comparing Function of OpenStack and VMware. Li-qiu JIANG and Da-wei XIAO 2017 2nd International Conference on Wireless Communication and Network Engineering (WCNE 2017) ISBN: 978-1-60595-531-5 Comparing Function of OpenStack and VMware Li-qiu JIANG and Da-wei XIAO Institute

More information

SUSE An introduction...

SUSE An introduction... Virtualization @ SUSE An introduction... Mike Latimer Sr. Engineering Manager SUSE mlatimer@suse.com Agenda Who is SUSE? Introduction to Virtualization Types of Hypervisors Xen KVM libvirt Virtualization

More information

xcat is not required. VM host computers may be installed manually or by some other means.

xcat is not required. VM host computers may be installed manually or by some other means. VM Host Profiles A VM host profile contains several parameters which describe how a VM host is configured so that VCL knows how to manage it Each VM host is assigned a VM host profile A VM host profile

More information

VMware Horizon Migration Tool User Guide

VMware Horizon Migration Tool User Guide VMware Horizon Migration Tool User Guide Version 3.0.0 August 2017 VMware End User Computing 1/31 @2017 VMware, Inc. All rights reserved. @2017 VMware, Inc. All rights reserved. This product is protected

More information

Running the vsan Witness Appliance in vcloud Air First Published On: Last Updated On:

Running the vsan Witness Appliance in vcloud Air First Published On: Last Updated On: Running the vsan Witness Appliance in vcloud Air First Published On: 02-03-2017 Last Updated On: 10-10-2017 1 Table of Contents 1. Overview 1.1.Introduction 1.2.2 Node & Stretched Cluster Basic Requirements

More information

OpenNebula on VMware: Cloud Reference Architecture

OpenNebula on VMware: Cloud Reference Architecture OpenNebula on VMware: Cloud Reference Architecture Version 1.2, October 2016 Abstract The OpenNebula Cloud Reference Architecture is a blueprint to guide IT architects, consultants, administrators and

More information

and public cloud infrastructure, including Amazon Web Services (AWS) and AWS GovCloud, Microsoft Azure and Azure Government Cloud.

and public cloud infrastructure, including Amazon Web Services (AWS) and AWS GovCloud, Microsoft Azure and Azure Government Cloud. DATA SHEET vthunder SOFTWARE FOR VIRTUAL & CLOUD INFRASTRUCTURE A10 vthunder software appliances enable organizations to SUPPORTED SOLUTIONS gain flexible, easy-to-deploy and high-performance secure application

More information

Install ISE on a VMware Virtual Machine

Install ISE on a VMware Virtual Machine Supported VMware Versions, page 1 Support for VMware vmotion, page 1 Support for Open Virtualization Format, page 2 Virtual Machine Requirements, page 3 Virtual Machine Resource and Performance Checks,

More information

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server

How Parallels RAS Enhances Microsoft RDS. White Paper Parallels Remote Application Server How Parallels RAS Enhances Microsoft RDS White Paper Parallels Remote Application Server Table of Contents Introduction... 3 Overview of Microsoft Remote Desktop Services... 3 Microsoft RDS Pain Points...

More information

Windows Server VDI for Service Providers. White Paper Parallels Remote Application Server 2017

Windows Server VDI for Service Providers. White Paper Parallels Remote Application Server 2017 Windows Server VDI for Service Providers White Paper Parallels Remote Application Server 2017 Table of Contents Optimize VDI for xsps and ISVs... 3 Microsoft SPLA Pricing for Two Processor Model... 3 Parallels

More information

Hybrid Clouds: Integrating the Enterprise Data Center and the Public Cloud

Hybrid Clouds: Integrating the Enterprise Data Center and the Public Cloud Hybrid Clouds: Integrating the Enterprise Data Center and the Public Cloud Usha Ramachandran, Technical Marketing Engineer Session Abstract In this session, participants will learn how to create hybrid

More information

Virtual Network Functions Life Cycle Management

Virtual Network Functions Life Cycle Management Virtual Network Functions Life Cycle Management Cisco Elastic Services Controller (ESC) provides a single point of control to manage all aspects of VNF lifecycle for generic virtual network functions (VNFs)

More information

AppController :21:56 UTC Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement

AppController :21:56 UTC Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement AppController 2.6 2014-03-18 13:21:56 UTC 2014 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents AppController 2.6... 6 About This Release... 8 Getting Started...

More information

Installing the Cisco Virtual Network Management Center

Installing the Cisco Virtual Network Management Center CHAPTER 4 Installing the Cisco Virtual Network Management Center This chapter provides procedures for installing the Cisco Virtual Network Management Center (VNMC). This chapter includes the following

More information

OS10 Virtualization Guide. Enterprise Edition

OS10 Virtualization Guide. Enterprise Edition OS10 Virtualization Guide Enterprise Edition 2018-7 Rev. A00 Contents 1 OS10 software virtualization...4 2 Setup GNS3 server...7 3 Setup GNS3 client... 11 4 Start GNS3 client...16 5 Import OS10 appliance...20

More information

System Requirements. Hardware and Virtual Appliance Requirements

System Requirements. Hardware and Virtual Appliance Requirements This chapter provides a link to the Cisco Secure Network Server Data Sheet and lists the virtual appliance requirements. Hardware and Virtual Appliance Requirements, page 1 Virtual Machine Appliance Size

More information

MIGRATING SAP WORKLOADS TO AWS CLOUD

MIGRATING SAP WORKLOADS TO AWS CLOUD MIGRATING SAP WORKLOADS TO AWS CLOUD Cloud is an increasingly credible and powerful infrastructure alternative for critical business applications. It s a great way to avoid capital expenses and maintenance

More information

Advanced Architecture Design for Cloud-Based Disaster Recovery WHITE PAPER

Advanced Architecture Design for Cloud-Based Disaster Recovery WHITE PAPER Advanced Architecture Design for Cloud-Based Disaster Recovery WHITE PAPER Introduction Disaster Recovery (DR) is a fundamental tool for mitigating IT and business risks. But because it is perceived as

More information

Horizon DaaS Platform 6.1 Release Notes. This document describes changes to the Horizon DaaS Platform for Version 6.1.

Horizon DaaS Platform 6.1 Release Notes. This document describes changes to the Horizon DaaS Platform for Version 6.1. Horizon DaaS Platform 6.1 Release Notes This document describes changes to the Horizon DaaS Platform for Version 6.1. August 2014 2014 VMware, Inc. All rights reserved. This product is protected by U.S.

More information

User Manual. Virtual and Hardware Appliance User Manual - Version

User Manual. Virtual and Hardware Appliance User Manual - Version User Manual Virtual and Hardware Appliance User Manual - Version 4.5.0.2 I Endpoint Protector Virtual Appliance User Manual Table of Contents 1. Endpoint Protector Virtual Appliance formats1 1.1. Virtualization

More information

The only open-source type-1 hypervisor

The only open-source type-1 hypervisor Monika Danikáková What is Xen? The only open-source type-1 hypervisor For Unix and Unix-like OS Linux, NetBSD and OpenSolaris From ancient greek term Xenos (ξένος), guest-friends Developed by the University

More information

SonicWall SMA 8200v. Getting Started Guide

SonicWall SMA 8200v. Getting Started Guide SonicWall SMA 8200v Getting Started Guide Copyright 2017 SonicWall Inc. All rights reserved. SonicWall is a trademark or registered trademark of SonicWall Inc. and/or its affiliates in the U.S.A. and/or

More information

Apache CloudStack CloudStack Administrator's Guide

Apache CloudStack CloudStack Administrator's Guide Apache CloudStack 4.0.2 CloudStack Administrator's Guide open source cloud com put ing Apache CloudStack CloudStack Administrator's Guide Apache CloudStack 4.0.2 CloudStack Administrator's Guide Author

More information