Installing the Cisco IOS XRv 9000 Router in KVM Environments

Size: px
Start display at page:

Download "Installing the Cisco IOS XRv 9000 Router in KVM Environments"

Transcription

1 Installing the Cisco IOS XRv 9000 Router in KVM Environments These file types are needed to install Cisco IOS XRv 9000 Router on the KVM hypervisor:.qcow2 Used for booting the software image in KVM OpenStack environments. The qcow2 disk image has an instance of the Cisco IOS XRv 9000 Router pre-installed..iso and.qcow2 Used to manually create the Cisco IOS XRv 9000 Router VM using Virsh application. You must also have virsh.xml file that has sample XML configuration used to launch the Cisco IOS XRv 9000 Router in KVM environments using Virsh commands. Installation Requirements for KVM, page 1 Installing the Cisco IOS XRv 9000 Router Using KVM Command Line, page 2 Installing the Cisco IOS XRv 9000 Router in KVM Using Virsh, page 5 Creating the Cisco IOS XRv 9000 Router KVM Instance on OpenStack, page 6 Increasing Performance on KVM Configuration, page 9 Installation Requirements for KVM Cisco IOS XRv 9000 Router is supported on top of Ubuntu and Red Hat Distrutions using the Kernel Virtual Machine (KVM). The Cisco IOS XRv 9000 Router installation on KVM requires the creation of a VM and installation using the either.iso file or.qcow2 image. The VM can be launched either using the KVM command line, Virsh, or OpenStack. For information on the installation requirements for KVM, refer to the latest Release s for Cisco IOS XRv 9000 Router. See the Table 1 for release notes links. 1

2 Installing the Cisco IOS XRv 9000 Router Using KVM Command Line Installing the Cisco IOS XRv 9000 Router in KVM Environments From Release 6.0, minimum of 45GB VM hard disk size is supported. The du command is used to check the real amount of disk space consumed by the virtual disk image. The option intel_iommu=on command must be set in the grub configuration for PCIe-passthrough interfaces to work in a VM. The CPU flags must be passed into the VM and must include the sse4_2 flag in order for the embedded Dataplane to work. For information on KVM support on OpenStack, see the section KVM support on OpenStack. Installing the Cisco IOS XRv 9000 Router Using KVM Command Line This procedure provides a general guideline for manually creating the VM for the Cisco IOS XRv 9000 router; the exact steps that you need to perform may vary depending on the characteristics of your KVM environment and setup. For more information, see the Red Hat Linux or Ubuntu documentation. This procedure explains how to create ISO boot configuration with 3 traffic interfaces and 3 required interfaces (one is for XR management, and two are reserved). 2

3 Installing the Cisco IOS XRv 9000 Router in KVM Environments Installing the Cisco IOS XRv 9000 Router Using KVM Command Line 1 /usr/bin/kvm \ Invokes the KVM 2 -smbios type=1,manufacturer="cisco",product="cisco IOS XRv 9000",uuid=97fc351b-431d-4cf2-9c01-43c283faf2a3 \ Sets Universally Unique Identifier (UUID) for the VM instance. The UUID is used as part of licensing to identify VM instance. 3 -cpu host \ 4 Pass host CPU flags into guest. -drive file=/home/username/bnbmay13/workdir-username/disk1.raw,if=virtio,media=disk,index=1 \ -drive file=/home/username/bnbmay13/workdir-username/xrv9k-fullk9-x.iso.baked,media=cdrom,index=2 \ Empties harddisk and boots ISO. 5 -m \ Creates memory. 6 -smp cores=4,threads=1,sockets=1 \ Creates four virtual CPUs and one socket. 7 -enable-kvm \ Enables hardware acceleration. 8 -display none \ Emulates VGA console when using serial ports for console access. This step is recommended. 9 -rtc base=utc \ Sets the real time clock (RTC). -netdev tap,id=host1,ifname=usernamelx1,script=no,downscript=no \ -netdev tap,id=host2,ifname=usernamelx2,script=no,downscript=no \ -netdev tap,id=host3,ifname=usernamelx3,script=no,downscript=no \ -device virtio-net-pci,romfile=,netdev=host1,id=host1,mac=52:46:84:57:a0:da \ -device virtio-net-pci,romfile=,netdev=host2,id=host2,mac=52:46:c4:f4:36:0f \ -device virtio-net-pci,romfile=,netdev=host3,id=host3,mac=52:46:a5:c0:d0:c5 \ Creates 3 NICs; the first is mapped to XR management interface, the second and third are reserved. -netdev tap,id=data1,ifname=usernamexr1,script=no,downscript=no \ -netdev tap,id=data2,ifname=usernamexr2,script=no,downscript=no \ -netdev tap,id=data3,ifname=usernamexr3,script=no,downscript=no \ -device e1000,romfile=,netdev=data1,id=data1,mac=52:46:87:18:62:df \ -device e1000,romfile=,netdev=data2,id=data2,mac=52:46:32:02:90:6f \ -device e1000,romfile=,netdev=data3,id=data3,mac=52:46:34:93:52:1f \ The fourth to eleventh NICs are mapped to traffic ports. A minimum of one traffic interface is recommended. -serial telnet: :10621,nowait,server \ 3

4 Installing the Cisco IOS XRv 9000 Router Using KVM Command Line Installing the Cisco IOS XRv 9000 Router in KVM Environments -serial telnet: :14713,nowait,server \ -serial telnet: :18090,nowait,server \ -serial telnet: :17181,nowait,server \ Creates four serial ports to access console. The first serial port is mapped to XR console. See Console Mapping section for additional information. A minimum of one serial port is recommended. For information on configuring the serial console access, see Configuring the Serial Console Access in KVM using QEMU section. 13 -boot once=d & Boot the ISO only once. Example: /usr/bin/kvm \ -smbios type=1,manufacturer="cisco",product="cisco IOS XRv 9000",uuid=97fc351b-431d-4cf2-9c01-43c283faf2a3 \ -cpu host \ -drive file=/home/username/bnbmay13/workdir-username/disk1.raw,if=virtio,media=disk,index=1 \ -drive file=/home/username/bnbmay13/workdir-username/xrv9k-fullk9-x.iso.baked,media=cdrom,index=2 \ -m \ -smp cores=4,threads=1,sockets=1 \ -enable-kvm \ -daemonize \ -display none \ -rtc base=utc \ -name IOS-XRv-9000:username \ -runas username \ -netdev tap,id=host1,ifname=usernamelx1,script=no,downscript=no \ -netdev tap,id=host2,ifname=usernamelx2,script=no,downscript=no \ -netdev tap,id=host3,ifname=usernamelx3,script=no,downscript=no \ -device virtio-net-pci,romfile=,netdev=host1,id=host1,mac=52:46:84:57:a0:da \ -device virtio-net-pci,romfile=,netdev=host2,id=host2,mac=52:46:c4:f4:36:0f \ -device virtio-net-pci,romfile=,netdev=host3,id=host3,mac=52:46:a5:c0:d0:c5 \ -netdev tap,id=data1,ifname=usernamexr1,script=no,downscript=no \ -netdev tap,id=data2,ifname=usernamexr2,script=no,downscript=no \ -netdev tap,id=data3,ifname=usernamexr3,script=no,downscript=no \ -device e1000,romfile=,netdev=data1,id=data1,mac=52:46:87:18:62:df \ -device e1000,romfile=,netdev=data2,id=data2,mac=52:46:32:02:90:6f \ -device e1000,romfile=,netdev=data3,id=data3,mac=52:46:34:93:52:1f \ -monitor telnet: :11063,server,nowait \ -serial telnet: :10621,nowait,server \ -serial telnet: :14713,nowait,server \ -serial telnet: :18090,nowait,server \ -serial telnet: :17181,nowait,server \ -boot once=d & The disk labeled disk1.raw in the example above can be created with qemu-img. The qemu-img is an utility to convert the virtual hard disk format. Instead of a raw disk format, qcow2 disk format can be used in above example. A preinstalled qcow2 image can also be used; in that case the cdrom parameter is removed. 4

5 Installing the Cisco IOS XRv 9000 Router in KVM Environments Installing the Cisco IOS XRv 9000 Router in KVM Using Virsh Installing the Cisco IOS XRv 9000 Router in KVM Using Virsh This procedure provides a general guideline for manually creating the VM for the Cisco IOS XRv 9000; the exact steps that you need to perform may vary depending on the characteristics of your KVM environment and setup. For more information, refer the Red Hat Linux, Ubuntu and Virsh documentation. Before You Begin The VM memory ballooning is not supported and hence the 'memory' and 'currentmemory' unit values (as shown below) must be the same in Virsh file. <memory unit='mb >XXX</memory> <currentmemory unit='mb >XXX</currentMemory> Step 1 Step 2 From Cisco.com download the.iso or.qcow2 image along with the sample Virsh XML file. Edit the XML file to point to the.iso or.qcow2 image, and edit the interface sources to designate the connectivity desired. <!-- CDROM HDB Disk --> <disk type='file' device='cdrom'> <driver name='qemu' type='raw'/> <source file='/home/<username>/xrv9k-fullk9-x.iso'/> <target dev='hdc' bus='ide'/> <alias name='ide-cdrom'/> </disk> Step 3 Step 4 If qcow2 image is used, comment out the CDROM section. If iso image is used, then: 1 Create an empty qcow2 disk: qemu-img create -f qcow2 xrv9000.qcow2 45G The minimum supported VM hard disk size is 45GB for release 6.0 and 55GB for release Edit the HDA Disk section in the XML to point to the empty qcow2 disk just created: <!-- HDA Disk --> <disk type='file' device='disk'> <driver name='qemu' type='qcow2'/> <source file='/home/<username>/xrv9000.qcow2'/> <target dev='vda' bus='virtio'/> <alias name='virtio-disk0'/> </disk> Step 5 Create the Virsh domain. virsh create xrv9k-fullk9-x.virsh.xml Step 6 Validate the Virsh domain created in Step 5: virsh list xrv9k-fullk9-x.virsh.xml Id Name State

6 Creating the Cisco IOS XRv 9000 Router KVM Instance on OpenStack Installing the Cisco IOS XRv 9000 Router in KVM Environments 149 IOS-XRv-9000_username_virsh running Step 7 Use the Virsh commands to manage the VM, such as: reboot virsh reboot IOS-XRv-9000_USER1_virsh shutdown virsh shutdown IOS-XRv-9000_USER1_virsh destroy virsh destroy IOS-XRv-9000_USER1_virsh For information on configuring the serial console access, see Configuring the Serial Console Access in KVM using Virsh section. See Virsh command reference documentation for more details. Creating the Cisco IOS XRv 9000 Router KVM Instance on OpenStack This procedure shows how to bring the Cisco IOS XRv 9000 Router up on the RHEL 7 and later version and OpenStack 5 and later version. The procedure uses the OpenStack command line interface. It is expected that the reader is familiar with OpenStack commands and procedures. See the OpenStack documentation for further information. At the end of the procedure, you will have a single Cisco IOS XRv 9000 Router running with 3 data plane interfaces connected to 3 neutron networks. In case trunk interfaces are required, please use Neutron ML2 core plugin with Nexus 1kv mechanism plugin. The following procedure creates only Access (non-tagging) type of interfaces. Before You Begin You must have: OpenStack 5, 6 or 7 with Neutron ML2 core plugin, Open vswitch as a mechanism plugin and VLAN as Tenants network type. Cisco IOS XRv 9000 Router ISO image (VGA type). Step 1 Image preparation 6

7 Installing the Cisco IOS XRv 9000 Router in KVM Environments Creating the Cisco IOS XRv 9000 Router KVM Instance on OpenStack For Cisco IOS XRv 9000 Router deployment on OpenStack you need: Cisco IOS XRv 9000 ISO image (VGA type) a blank 45GB cinder volume (virtual hard disk) The minimum supported VM hard disk size is 45GB for release 6.0 and 55GB for release 5.4. When the ISO image is booted, the Cisco XRv 9000 Router gets installed on the second disk (blank 45GB volume). Later, the router can be booted from the created cinder volume. Optionally, a pre-installed Cisco XRv 9000 qcow2 disk can be downloaded in place of the ISO image. 1 Cisco IOS XRv 9000 ISO image (VGA type) must be imported into OpenStack glance. Use the following command line to import the image into glance: glance image-create --name xrv9k-fullk9_vga-x --disk-format iso --container bare \ --file xrv9k-fullk9_vga-x.iso 2 Verify the image in OpenStack glance: glance image-list ID Name Disk Format Container Format Size Status b a8-45e7-abfd-f52593f2dc1a csr1000v-universalk s s qcow2 bare active e779245a bee-bc85-a73e9394b981 xrv9k-fullk9_vga-x iso bare active 3b3ade31-fae fb77452a65ab xrvr-initial-config iso bare active Step 2 Cinder volumes preparation Use the following command line to create Cinder volumes: 1 Create Cinder volume of Cisco IOS XRv 9000 Router's disk image and make it bootable: cinder create --display-name xrv9k-disk 45 cinder set-bootable volume-id True The cinder list command displays the volume ID of router's ISO image. 2 Check Cinder volumes: cinder list ID Status Display Name Size Volume Type Bootable Attached to cbef86dd daa-81b2-4b905b Available xrv9k-disk 45 None true 5262e1fe-37f bf76-aab26cb

8 Creating the Cisco IOS XRv 9000 Router KVM Instance on OpenStack Installing the Cisco IOS XRv 9000 Router in KVM Environments You must see Cinder volume with name xrv9k-disk with Status-Available and Bootable-True. Step 3 Step 4 Configuring Nova Flavor The virtual hardware templates are called flavors in OpenStack. The nova flavor-create command allows users to create new flavors. The nova s flavor is used to pass the information about RAM size, disk, and number of cores to the Nova scheduler process when new instances of VM are launched. The Cisco IOS XRv 9000 Router requires 16GB of RAM, 45GB hard disk, and 4 vcpus. nova flavor-create xrv9k-flavor auto xrv9k-flavor is flavor's name. Configuring network Cisco IOS XRv 9000 Router requires a minimum of 4 network interfaces. The first NIC or vnic is mapped with the XR management interface, the second and third NICs are reserved, and the remaining NICs are mapped to traffic interfaces. For more information on interface mapping, see the Mapping the Router Network Interfaces to VM Network Interface Cards section. For a sample network configuration, we can have 6 neutron networks, 6 neutron subnetworks and then pass 6 network IDs as parameters to VM instance. This equates to 3 traffic interfaces. Use neutron net-create <neutron-network-name> to create networks in Neutron. For example: neutron net-create management-xr neutron net-create management-other neutron net-create management-host neutron net-create datalink-1 neutron net-create datalink-2 neutron net-create datalink-3 In the above example, first three commands create control plane networks, and last three commands create data plane networks. Now using corresponding network names, create subnetworks in Neutron. Use neutron subnet-create <neutron-network-name> <IP-subnet> --name <neutron-network-name> command. For consistency, keep the neutron names and subnetwork names same. For example: neutron subnet-create management-xr /26 --name management-xr neutron subnet-create management-other /26 --name management-other neutron subnet-create management-host /26 --name management-host neutron subnet-create datalink /24 --name datalink-1 neutron subnet-create datalink /24 --name datalink-2 neutron subnet-create datalink /24 --name datalink-3 Step 5 Attach management-xr and management-host subnets to the neutron router Use these commands to attach the management-xr and management-host subnets to the neutron router: neutron router-interface-add <Neutron router name> <subnet id of management-xr> neutron router-interface-add <Neutron router name> <subnet id of management-host> 8

9 Installing the Cisco IOS XRv 9000 Router in KVM Environments Increasing Performance on KVM Configuration This step must be performed before launching the Cisco IOS XRv 9000 Router to avoid DHCP issues. The neutron router-list command displays list of Neutron router name. The neutron subnet-list command displays list of Neutron subnet. Step 6 Launch the Cisco IOS XRv 9000 Router Follow this command line to boot the router. nova boot --flavor xrv9k-flovor \ --nic net-id={control plane network ID of management-xr} \ --nic net-id={control plane network ID of management-other} \ --nic net-id={control plane network ID of management-host} \ --nic net-id={data plane network ID of datalink-1} \ --nic net-id={data plane network ID of datalink-2} \ --nic net-id={data plane network ID of datalink-3} \ --block-device id={glance ID of Cisco IOS XRv 9000 router's CD volume available in Step 1},\ --source=image,dest=volume,bus=ide,device=/dev/hdc,size=1,type=cdrom,bootindex=1 \ --block-device source=volume,id={cinder ID of Cisco IOS XRv 9000 Router's disk volume available in Step 1}, dest=volume,size=50,bootindex=0 xrv9k-1 nova list (your instance should be in Active state) nova get-vnc-console xrv9k-1 novnc The nova get-vnc-console command returns an URL that is used to access the Cisco IOS XRv 9000 Router console. The config-drive allows the VM to boot with an initial configuration so that when the VM is powered on, it can perform services, configured in the config-drive. As the Cisco IOS XRv 9000 Router is running on the VM, the router accepts a valid XR configuration through a plain text file. During the boot process the text file is parsed by the command parser, just as if the commands were entered through CLI. If config-drive support is desired, a plaintext file with the initial XR configuration can be passed by adding this line under nova boot command: config-drive true user-data <path>/iosxr_config.txt file /iosxr_config.txt=<path>/iosxr_config.txt For information on Cisco Virtual Appliance Configuration (CVAC), see section CVAC - Bootstrap Configuration Support. Increasing Performance on KVM Configuration You can increase the performance for a Cisco IOS XRv 9000 Router in the KVM environment by changing settings on the KVM host. These settings are independent of the Cisco IOS XR configuration settings on the router. This option is available in Red Hat Enterprise Linux 7.0 KVM. You can improve performance on KVM configurations by enabling CPU pinning. 9

10 Increasing Performance on KVM Configuration Installing the Cisco IOS XRv 9000 Router in KVM Environments The Cisco IOS XR Software Release 5.4 does not support jumbo packets larger than 1518 bytes for KVM on a VirtIO interface. The packets larger than 1518 bytes are dropped. Enabling CPU Pinning To increase the performance of the Cisco IOS XRv 9000 Router in KVM environments, you can use the KVM CPU affinity option to assign a VM to a specific processor. To use this option, configure CPU pinning on the KVM host. Follow these steps to configure CPU pinning: 1 In the KVM host environment, verify the host topology to find out how many vcpus are available for pinning: virsh nodeinfo 2 Verify the available vcpu numbers: virsh capabilities 3 Pin the vcpus to sets of processor cores: virsh vcpupin <vm-name> <vcpu-number> <host-core-number> The virsh vcpupin command must be executed for each vcpu on your Cisco IOS XRv 9000 Router. The following example shows the KVM commands needed if you have a Cisco IOS XRv 9000 Router configuration with four vcpus and the host has eight cores: virsh vcpupin xrv virsh vcpupin xrv virsh vcpupin xrv virsh vcpupin xrv The host core number can be any number from 0 to 7. For more information, see the KVM documentation. When configuring CPU pinning, carefully consider the CPU topology of the host server. If using a Cisco IOS XRv 9000 Router configured with multiple cores, do not configure CPU pinning across multiple sockets. The downside of improving performance on KVM configuration is that it requires dedicated system resources. 10

Cisco IOS XRv 9000 Router Installation and Configuration Guide

Cisco IOS XRv 9000 Router Installation and Configuration Guide First Published: 2015-08-26 Last Modified: 2018-03-28 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

Installing the Cisco CSR 1000v in KVM Environments

Installing the Cisco CSR 1000v in KVM Environments Installing the Cisco CSR 1000v in KVM Environments Kernel Virtual Machine Support Information, page 1 KVM Support on OpenStack, page 2 Installation Requirements for KVM Cisco IOS XE Fuji 16.7, page 2 Creating

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

Cisco IOS XRv Router Installation and Configuration Guide

Cisco IOS XRv Router Installation and Configuration Guide Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text Part Number: OL-30492-01 Cisco

More information

Deploy the ASAv Using KVM

Deploy the ASAv Using KVM You can deploy the ASAv using the Kernel-based Virtual Machine (KVM). About ASAv Deployment Using KVM, on page 1 Prerequisites for the ASAv and KVM, on page 2 Prepare the Day 0 Configuration File, on page

More information

INSTALLATION RUNBOOK FOR. VNF (virtual firewall) 15.1X49-D30.3. Liberty. Application Type: vsrx Version: MOS Version: 8.0. OpenStack Version:

INSTALLATION RUNBOOK FOR. VNF (virtual firewall) 15.1X49-D30.3. Liberty. Application Type: vsrx Version: MOS Version: 8.0. OpenStack Version: INSTALLATION RUNBOOK FOR Juniper vsrx Application Type: vsrx Version: VNF (virtual firewall) 15.1X49-D30.3 MOS Version: 8.0 OpenStack Version: Liberty 1 Introduction 1.1 Target Audience 2 Application Overview

More information

Installing the Cisco CSR 1000v in VMware ESXi Environments

Installing the Cisco CSR 1000v in VMware ESXi Environments Installing the Cisco CSR 1000v in VMware ESXi Environments VMware ESXi Support Information, page 1 VMware Requirements Cisco IOS XE Fuji 16.7, page 2 Supported VMware Features and Operations, page 3 Deploying

More information

INSTALLATION RUNBOOK FOR Netronome Agilio OvS. MOS Version: 8.0 OpenStack Version:

INSTALLATION RUNBOOK FOR Netronome Agilio OvS. MOS Version: 8.0 OpenStack Version: INSTALLATION RUNBOOK FOR Netronome Agilio OvS Product Name: Agilio OvS Driver Version: 2.2-r4603 MOS Version: 8.0 OpenStack Version: Liberty Product Type: Network Offload Driver 1. Introduction 1.1 Target

More information

Landslide Virtual Machine Installation Instructions

Landslide Virtual Machine Installation Instructions Landslide Virtual Machine Installation Instructions Landslide Virtual Machine Installation Instructions 1 Virtualization Platform The choice and installation of virtualization platform and manager is left

More information

Configuring Virtual Networks Using OpenStack

Configuring Virtual Networks Using OpenStack This chapter contains the following sections: Information About Virtual Networks, page 1 Guidelines and Limitations for the OpenStack Dashboard, page 1 Creating a Virtual Network Workflow, page 2 Creating

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

Architecture and terminology

Architecture and terminology Architecture and terminology Guy Carmin RHCE, RHCI, RHCVA, RHCSA Solution Architect IGC, Red Hat Roei Goldenberg RHCE Linux Consultant and Cloud expert, Matrix May 2015 Agenda RHEL-OSP services modules

More information

Installing the Cisco CSR 1000v in Citrix XenServer Environments

Installing the Cisco CSR 1000v in Citrix XenServer Environments Installing the Cisco CSR 1000v in Citrix XenServer Environments Citrix XenServer Support Information, page 1 Fuji 16.8, page 2 Manually Creating the Cisco CSR 1000v VM Using the.iso File (Citrix XenServer),

More information

User Workspace Management

User Workspace Management Access the Interface, page 1 User Management Workspace User Types, page 4 Projects (Admin User), page 5 Users (Admin User), page 9 CML Server (Admin User), page 11 Connectivity, page 30 Using the VM Control

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

Linux/QEMU/Libvirt. 4 Years in the Trenches. Chet Burgess Cisco Systems Scale 14x Sunday January 24th

Linux/QEMU/Libvirt. 4 Years in the Trenches. Chet Burgess Cisco Systems Scale 14x Sunday January 24th Linux/QEMU/Libvirt 4 Years in the Trenches Chet Burgess Cisco Systems Scale 14x Sunday January 24th Introduction What do I know? I ve spent the last 4 years designing, building, and managing OpenStack

More information

Installing Cisco VTS in a Linux - OpenStack Environment

Installing Cisco VTS in a Linux - OpenStack Environment The following sections provide details about installing VTS on a Linux-OpenStack environment or a VMware-based environment. Ensure that you review the Prerequisites chapter, before you begin installing

More information

INSTALLATION RUNBOOK FOR Triliodata + TrilioVault

INSTALLATION RUNBOOK FOR Triliodata + TrilioVault INSTALLATION RUNBOOK FOR Triliodata + TrilioVault Application Type: [Backup and disaster recovery] Application Version: [2.1] MOS Version: [7.0] OpenStack version: [Kilo] Content Document History 1 Introduction

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

Installing Cisco VTS on a VMware Environment, page 6 Installing the Virtual Topology Forwarder, page 9 Verifying VTS Installation, page 14

Installing Cisco VTS on a VMware Environment, page 6 Installing the Virtual Topology Forwarder, page 9 Verifying VTS Installation, page 14 The following sections provide details about installing VTS on a Linux-OpenStack environment or a VMware-based environment. Ensure that you review the Prerequisites chapter, before you begin installing

More information

How to Collect Logs from VM Bootup

How to Collect Logs from VM Bootup How to Collect Logs from VM Bootup Contents Introduction VM Bootup Introduction This document describes how to collect logs when a Virtual Machine (VM) of Virtualized Packet Core (VPC) in Cisco Ultra Services

More information

Red Hat Enterprise Linux 8.0 Beta

Red Hat Enterprise Linux 8.0 Beta Red Hat Enterprise Linux 8.0 Beta Configuring and managing virtualization A guide to managing virtualization on Red Hat Enterprise Linux 8.0 Beta Last Updated: 2018-11-30 Red Hat Enterprise Linux 8.0

More information

Know your competition A review of qemu and KVM for System z

Know your competition A review of qemu and KVM for System z Know your competition A review of qemu and KVM for System z Mark Post SUSE Tuesday, August 5, 2014 Session 15693 Insert Custom Session QR if Desired. Agenda What is qemu and KVM High-level architecture

More information

The following sections below list the deployment scenarios and also list all the requirement XML files.

The following sections below list the deployment scenarios and also list all the requirement XML files. Cisco Elastic Services Controller (ESC) is a Virtual Network Functions Manager (VNFM), performing life cycle management of Virtual Network Functions (VNFs). ESC provides agentless and multi-vendor VNF

More information

Silver Peak Systems. Installing EdgeConnect on Cisco ENCS

Silver Peak Systems. Installing EdgeConnect on Cisco ENCS Silver Peak Systems Installing EdgeConnect on Cisco ENCS Contents Installing EdgeConnect on Cisco ENCS Overview... 1 Assumptions and Prerequisites... 2 Procedure... 2 Upload the EdgeConnect KVM image to

More information

RHOSP 12 Director Installation on MaxCore TM Platform

RHOSP 12 Director Installation on MaxCore TM Platform Configuration Note March, 2018 This configuration note describes the installation and configuration of Red Hat OpenStack Platform 12 director on MaxCore TM Platform with a SharpStreamer TM Pro PCIE-7211-2

More information

Cisco IOS XRv Router Installation and Configuration Guide

Cisco IOS XRv Router Installation and Configuration Guide First Published: July 23, 2013 Last Modified: January 21, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS

More information

F5 iworkflow and Linux KVM: Setup. Version 2.0.2

F5 iworkflow and Linux KVM: Setup. Version 2.0.2 F5 iworkflow and Linux KVM: Setup Version 2.0.2 Table of Contents Table of Contents Getting Started with iworkflow Virtual Edition... 5 What is iworkflow Virtual Edition?... 5 About iworkflow VE compatibility

More information

SGOS on KVM Deployment Guide

SGOS on KVM Deployment Guide SGOS on KVM Deployment Guide Guide Revision: 8/18/2017 2 SGOS on KVM Deployment Guide SGOS on KVM Deployment Guide 3 Legal Notice Copyright 2017 Symantec Corp. All rights reserved. Symantec, the Symantec

More information

BIG-IP Virtual Edition and Linux KVM: Setup. Version 12.1

BIG-IP Virtual Edition and Linux KVM: Setup. Version 12.1 BIG-IP Virtual Edition and Linux KVM: Setup Version 12.1 Table of Contents Table of Contents Getting Started with BIG-IP Virtual Edition on KVM...5 Steps to deploy BIG-IP VE...5 Prerequisites for BIG-IP

More information

Layer-4 to Layer-7 Services

Layer-4 to Layer-7 Services Overview, page 1 Tenant Edge-Firewall, page 1 LBaaS, page 2 FWaaS, page 4 Firewall Configuration, page 6 Overview Layer-4 through Layer-7 services support(s) end-to-end communication between a source and

More information

CLOUD ARCHITECTURE & PERFORMANCE WORKLOADS. Field Activities

CLOUD ARCHITECTURE & PERFORMANCE WORKLOADS. Field Activities CLOUD ARCHITECTURE & PERFORMANCE WORKLOADS Field Activities Matt Smith Senior Solution Architect Red Hat, Inc @rhmjs Jeremy Eder Principal Performance Engineer Red Hat, Inc @jeremyeder CLOUD ARCHITECTURE

More information

Activating Flex Grid License for Managed Services

Activating Flex Grid License for Managed Services DEPLOYMENT GUIDE Activating Flex Grid License for Managed Services NIOS version 8.3 August 2018 2018 Infoblox Inc. All rights reserved. Flex Grid License for Managed Services August 2018 Page 1 of 34 Contents

More information

Deployment Guide for Nuage Networks VSP

Deployment Guide for Nuage Networks VSP Page 1 of 29 view online Overview This document discusses the deployment and configuration of Avi Vantage Load Balancer in a Nuage Networks integrated OpenStack platform for a single tenant mode. The following

More information

Deployment Guide for Nuage Networks VSP

Deployment Guide for Nuage Networks VSP Page 1 of 11 view online Overview This document discusses the deployment and configuration of Avi Vantage Load Balancer in a Nuage Networks integrated OpenStack platform for a single tenant mode. 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

Cisco UCS Manager VM-FEX for KVM CLI Configuration Guide, Release 3.2

Cisco UCS Manager VM-FEX for KVM CLI Configuration Guide, Release 3.2 Cisco UCS Manager VM-FEX for KVM CLI Configuration Guide, Release 3.2 First Published: 2017-08-18 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Deploy the ExtraHop Explore Appliance on a Linux KVM

Deploy the ExtraHop Explore Appliance on a Linux KVM Deploy the ExtraHop Explore Appliance on a Linux KVM Published: 2018-12-14 In this guide, you will learn how to deploy an ExtraHop Explore virtual appliance on a Linux kernel-based virtual machine (KVM)

More information

OpenStack Tutorial. Shihabur R. Chowdhury CS Winter 2017 University of Waterloo

OpenStack Tutorial. Shihabur R. Chowdhury CS Winter 2017 University of Waterloo OpenStack Tutorial Shihabur R. Chowdhury CS 856 - Winter 2017 University of Waterloo Environment Setup Download the VirtualBox image from here Open VirtualBox and go to File > Import Appliance Choose the

More information

Installing the Cisco CSR 1000v in Microsoft Hyper-V Environments

Installing the Cisco CSR 1000v in Microsoft Hyper-V Environments Installing the Cisco CSR 1000v in Microsoft Hyper-V Environments Microsoft Hyper-V Support Information, page 1 Microsoft Hyper-V Limitations, page 2 Installation Requirements for Microsoft Hyper-V Cisco

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

Real-Time KVM for the Masses Unrestricted Siemens AG All rights reserved

Real-Time KVM for the Masses Unrestricted Siemens AG All rights reserved Siemens Corporate Technology August 2015 Real-Time KVM for the Masses Unrestricted Siemens AG 2015. All rights reserved Real-Time KVM for the Masses Agenda Motivation & requirements Reference architecture

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

kernels-in-kernels kernels within kernels by Lee Elston Version 1.0 c CC-BY SA4

kernels-in-kernels kernels within kernels by Lee Elston Version 1.0 c CC-BY SA4 kernels within kernels by Lee Elston Version 1.0 ii The C-ALE (Cloud & Container Apprentice Linux Engineer) is a series of seminars held at existing conferences covering topics which are fundamental to

More information

Simulating Networks Using Cisco Modelling Labs

Simulating Networks Using Cisco Modelling Labs Simulating Networks Using Cisco Modelling Labs Craig Brown (craibrow@cisco.com) Technical Marketing Engineer #clmel Physical network labs, as we know them, will become a thing of the past, and virtual

More information

VSEC FOR OPENSTACK R80.10

VSEC FOR OPENSTACK R80.10 16 October 2017 VSEC FOR OPENSTACK R80.10 Administration Guide Protected 2017 Check Point Software Technologies Ltd. All rights reserved. This product and related documentation are protected by copyright

More information

HP Helion OpenStack Carrier Grade 1.1: Release Notes

HP Helion OpenStack Carrier Grade 1.1: Release Notes HP Helion OpenStack Carrier Grade 1.1: Release Notes HP Helion OpenStack Carrier Grade Contents 2 Contents HP Helion OpenStack Carrier Grade 1.1: Release Notes...3 Changes in This Release... 5 Usage Caveats...7

More information

RHEV in the weeds - special sauce! Marc Skinner

RHEV in the weeds - special sauce! Marc Skinner RHEV in the weeds - special sauce! Marc Skinner Twin Cities Users Group :: Q3/2013 Introduction RHEV = Red Hat Enterprise Vitualization RHEV Manager = Red Hat Enterprise Hypervisor Manager DATACENTER VIRTUALIZATION

More information

Cisco Virtual Networking Solution for OpenStack

Cisco Virtual Networking Solution for OpenStack Data Sheet Cisco Virtual Networking Solution for OpenStack Product Overview Extend enterprise-class networking features to OpenStack cloud environments. A reliable virtual network infrastructure that provides

More information

Dell EMC Avamar Virtual Edition for OpenStack KVM

Dell EMC Avamar Virtual Edition for OpenStack KVM Dell EMC Avamar Virtual Edition for OpenStack KVM Version 7.5 Installation Guide 302-003-940 REV 01 Copyright 2016-2017 Dell Inc. or its subsidiaries. All rights reserved. Published June 2017 Dell believes

More information

libvirt integration and testing for enterprise KVM/ARM Drew Jones, Eric Auger Linaro Connect Budapest 2017 (BUD17)

libvirt integration and testing for enterprise KVM/ARM Drew Jones, Eric Auger Linaro Connect Budapest 2017 (BUD17) libvirt integration and testing for enterprise KVM/ARM Drew Jones, Eric Auger Linaro Connect Budapest 2017 (BUD17) Overview Enterprise guest requirements QEMU/KVM enterprise guest management libvirt A

More information

QLOGIC SRIOV Fuel Plugin Documentation

QLOGIC SRIOV Fuel Plugin Documentation QLOGIC SRIOV Fuel Plugin Documentation Release 1.0-1.0.0-1 QLOGIC Jul 19, 2016 CONTENTS 1 Overview of the QLogic SRIOV Fuel Plugin 1 1.1 Software Prerequisites..........................................

More information

Cloud and Datacenter Networking

Cloud and Datacenter Networking Cloud and Datacenter Networking Università degli Studi di Napoli Federico II Dipartimento di Ingegneria Elettrica e delle Tecnologie dell Informazione DIETI Laurea Magistrale in Ingegneria Informatica

More information

Security Gateway for OpenStack

Security Gateway for OpenStack Security Gateway for OpenStack R77.30 Administration Guide 21 May 2015 Protected 2015 Check Point Software Technologies Ltd. All rights reserved. This product and related documentation are protected by

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 Network Functions Virtualization Planning Guide Planning for NFV in Red Hat OpenStack Platform 10 Last Updated: 2018-03-01 Red Hat OpenStack Platform 10 Network Functions

More information

Introduction to the Cisco ASAv

Introduction to the Cisco ASAv Hypervisor Support The Cisco Adaptive Security Virtual Appliance (ASAv) brings full firewall functionality to virtualized environments to secure data center traffic and multitenant environments. You can

More information

WISTAR: VIRTUAL NETWORK TOPOLOGY CREATION FOR AUTOMATION SOLUTIONS

WISTAR: VIRTUAL NETWORK TOPOLOGY CREATION FOR AUTOMATION SOLUTIONS WISTAR: VIRTUAL NETWORK TOPOLOGY CREATION FOR AUTOMATION SOLUTIONS Nathan Embery Senior Consulting Engineer This statement of direction sets forth Juniper Networks current intention and is subject to change

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

KVM 在 OpenStack 中的应用. Dexin(Mark) Wu

KVM 在 OpenStack 中的应用. Dexin(Mark) Wu KVM 在 OpenStack 中的应用 Dexin(Mark) Wu Agenda Overview CPU Memory Storage Network Architecture Overview nova-api REST API nova-scheduler nova-conductor nova-compute DB RPC Call libvirt driver libvirt Cinder

More information

The following sections below list the deployment scenarios and also list all the requirement XML files.

The following sections below list the deployment scenarios and also list all the requirement XML files. Cisco Elastic Services Controller (ESC) is a Virtual Network Functions Manager (VNFM), performing life cycle management of Virtual Network Functions (VNFs). ESC provides agentless and multi-vendor VNF

More information

HPE Helion OpenStack Carrier Grade 1.1 Release Notes HPE Helion

HPE Helion OpenStack Carrier Grade 1.1 Release Notes HPE Helion HPE Helion OpenStack Carrier Grade 1.1 Release Notes 2017-11-14 HPE Helion Contents HP Helion OpenStack Carrier Grade 1.1: Release Notes... 3 Changes in This Release... 3 Usage Caveats...4 Known Problems

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

Virtualization Overview NSRC

Virtualization Overview NSRC Virtualization Overview NSRC Terminology Virtualization: dividing available resources into smaller independent units Emulation: using software to simulate hardware which you do not have The two often come

More information

Cisco Cloud Services Platform 2100 Quick Start Guide, Release 2.2.0

Cisco Cloud Services Platform 2100 Quick Start Guide, Release 2.2.0 Cisco Cloud Services Platform 2100 Quick Start Guide, Release 2.2.0 First Published: 2017-03-15 Last Modified: 2017-08-03 Summary Steps Setting up your Cisco Cloud Services Platform 2100 (Cisco CSP 2100)

More information

Installation runbook for

Installation runbook for Installation runbook for Arista Networks ML2 VLAN driver, L3 plugin integration Partner Name: Product Name: Product Version: Arista Networks Arista EOS EOS-4.14.5 or above MOS Version: Mirantis OpenStack

More information

Dell EMC Avamar Virtual Edition for OpenStack KVM

Dell EMC Avamar Virtual Edition for OpenStack KVM Dell EMC Avamar Virtual Edition for OpenStack KVM Version 7.5.1 Installation and Upgrade Guide 302-004-314 REV 01 Copyright 2016-2018 Dell Inc. or its subsidiaries. All rights reserved. Published February

More information

JSA KVM SUPPORT. Theodore Jencks, CSE Juniper Networks

JSA KVM SUPPORT. Theodore Jencks, CSE Juniper Networks JSA KVM SUPPORT Theodore Jencks, CSE KVM IMAGE SPECIFICATIONS Image is a compressed qcow2 image 16.5G in size when compressed Md5sum: Uncompressed the image is a 512G QCOW2 Ubuntu 18.04 LTS w/ KVM and

More information

Virtual Route Reflector

Virtual Route Reflector Virtual Route Reflector Getting Started Guide for KVM Modified: 2018-04-13 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the

More information

Deploy the ExtraHop Explore Appliance on a Linux KVM

Deploy the ExtraHop Explore Appliance on a Linux KVM Deploy the ExtraHop Explore Appliance on a Linux KVM Published: 2018-07-17 In this guide, you will learn how to deploy an ExtraHop Explore virtual appliance on a Linux kernel-based virtual machine (KVM)

More information

Configuring the vcpu Distribution across the Data, Control and Service Planes

Configuring the vcpu Distribution across the Data, Control and Service Planes Configuring the vcpu Distribution across the Data, Control and s Information About vcpu Allocation and Distribution, page How to Boot the Cisco CSR 000v with an OVA image, page How to Configure vcpu Distribution

More information

Preparing for Installation

Preparing for Installation This chapter contains the following sections: Preparing the Configuration and Mapping Files, page 1 OpenStack Charm s, page 1 Cisco Nexus 1000V for KVM VSM Charm s, page 3 Cisco Nexus 1000V for KVM VEM

More information

VM Life Cycle Management

VM Life Cycle Management VM life cycle management refers to the entire process of registering, deploying, updating, monitoring VMs, and getting them service chained as per your requirements. You can perform these tasks and more

More information

Cisco Modelling Labs Lessons from a Virtual World

Cisco Modelling Labs Lessons from a Virtual World Cisco Modelling Labs Lessons from a Virtual World Joel Obstfeld Distinguished Engineer Network Virtualisation The challenge - How do you deploy new services, make changes, or troubleshoot in the live network

More information

Configuring Virtual Blades

Configuring Virtual Blades CHAPTER 14 This chapter describes how to configure virtual blades, which are computer emulators that reside in a WAE or WAVE device. A virtual blade allows you to allocate WAE system resources for use

More information

Introduction to Neutron. Network as a Service

Introduction to Neutron. Network as a Service Introduction to Neutron Network as a Service Assaf Muller, Associate Software Engineer, Cloud Networking, Red Hat assafmuller.wordpress.com, amuller@redhat.com, amuller on Freenode (#openstack) The Why

More information

Thomas Lin, Naif Tarafdar, Byungchul Park, Paul Chow, and Alberto Leon-Garcia

Thomas Lin, Naif Tarafdar, Byungchul Park, Paul Chow, and Alberto Leon-Garcia Thomas Lin, Naif Tarafdar, Byungchul Park, Paul Chow, and Alberto Leon-Garcia The Edward S. Rogers Sr. Department of Electrical and Computer Engineering University of Toronto, ON, Canada Motivation: IoT

More information

Preparing Virtual Machines for Cisco APIC-EM

Preparing Virtual Machines for Cisco APIC-EM Preparing a VMware System for Cisco APIC-EM Deployment, page 1 Virtual Machine Configuration Recommendations, page 1 Configuring Resource Pools Using vsphere Web Client, page 4 Configuring a Virtual Machine

More information

Preparing Virtual Machines for Cisco APIC-EM

Preparing Virtual Machines for Cisco APIC-EM Preparing a VMware System for Cisco APIC-EM Deployment, on page 1 Virtual Machine Configuration Recommendations, on page 1 Configuring Resource Pools Using vsphere Web Client, on page 4 Configuring a Virtual

More information

Newsreader virtual machines Technical Report NWR

Newsreader virtual machines Technical Report NWR Newsreader virtual machines Technical Report NWR-2014-4 Version FINAL Aitor Soroa 1, Enrique Fernández 2 1 University of Basque Country Donostia, Basque Country a.soroa@ehu.es 2 University of Basque Country

More information

Installation Runbook for Apcera on Mirantis OpenStack

Installation Runbook for Apcera on Mirantis OpenStack Installation Runbook for Apcera on Mirantis OpenStack Application Version 440 MOS Version 7.0 OpenStack Version Application Type 2015.1.0 Kilo Platform as a Service Content Document History... 3 1 Introduction...

More information

VM Image Packaging. VM Image Packaging Utility. Contents

VM Image Packaging. VM Image Packaging Utility. Contents is a tool for converting qcow2 and img images into a tar.gz format with additional properties and profiles. VM image packaging can be done in two ways: Utility: This is an enhanced packaging process that

More information

Integrating ovirt, Foreman And Katello To Empower Your Data-Center Utilization

Integrating ovirt, Foreman And Katello To Empower Your Data-Center Utilization Integrating ovirt, Foreman And Katello To Empower Your Data-Center Utilization Yaniv Bronhaim Senior Software Engineer, Maintainer @ RHEV Red Hat IL, Raanana August 2015, CloudOpen Europe Agenda Introducing

More information

Cisco Cloud Services Platform 2100 Quick Start Guide, Release 2.2.5

Cisco Cloud Services Platform 2100 Quick Start Guide, Release 2.2.5 Cisco Cloud Services Platform 2100 Quick Start Guide, Release 2.2.5 First Published: 2018-03-30 Summary Steps Setting up your Cisco Cloud Services Platform 2100 (Cisco CSP 2100) and creating services consists

More information

Cisco VDS Service Broker Software Installation Guide for UCS Platforms

Cisco VDS Service Broker Software Installation Guide for UCS Platforms Cisco VDS Service Broker 1.0.1 Software Installation Guide for UCS Platforms Revised: May 2013 This document provides detailed instructions for installing the Cisco Videoscape Distribution Suite Service

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-10-11 Red Hat OpenStack

More information

Release Notes for Cisco Application Policy Infrastructure Controller Enterprise Module, Release x

Release Notes for Cisco Application Policy Infrastructure Controller Enterprise Module, Release x Release s for Cisco Application Policy Infrastructure Controller Enterprise Module, Release 1.3.3.x First Published: 2017-02-10 Release s for Cisco Application Policy Infrastructure Controller Enterprise

More information

Red Hat OpenStack Platform 11

Red Hat OpenStack Platform 11 Red Hat OpenStack Platform 11 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-10-11 Red Hat OpenStack

More information

Deploy the ExtraHop Discover Appliance on a Linux KVM

Deploy the ExtraHop Discover Appliance on a Linux KVM Deploy the ExtraHop Discover Appliance on a Linux KVM Published: 2018-07-16 The following procedure guides you through the deployment process of the ExtraHop Discover EDA 1000v or EDA 2000v virtual appliance

More information

HPE HELION CLOUDSYSTEM 9.0. Copyright 2015 Hewlett Packard Enterprise Development LP

HPE HELION CLOUDSYSTEM 9.0. Copyright 2015 Hewlett Packard Enterprise Development LP HPE HELION CLOUDSYSTEM 9.0 HPE Helion CloudSystem Foundation CloudSystem Foundation Key Use Cases Automate dev/test CICD on OpenStack technology compatible infrastructure Accelerate cloud-native application

More information

Storage Performance Tuning for FAST! Virtual Machines

Storage Performance Tuning for FAST! Virtual Machines Storage Performance Tuning for FAST! Virtual Machines Fam Zheng Senior Software Engineer LC3-2018 Outline Virtual storage provisioning NUMA pinning VM configuration options Summary Appendix 2 Virtual storage

More information

Red Hat OpenStack Platform 12

Red Hat OpenStack Platform 12 Red Hat OpenStack Platform 12 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-07-02 Red Hat OpenStack

More information

Sample XML Files. Sample XML File VTC Installation. The following sections provide sample XML files.

Sample XML Files. Sample XML File VTC Installation. The following sections provide sample XML files. The following sections provide sample XML files. Sample XML File VTC Installation, page 1 Sample XML File VTSR Installation, page 3 Sample XML File VTC Installation vtc-release2.1

More information

Virtual Server Management

Virtual Server Management Virtual Server Management with KVM for IBM z Systems Viktor Mihajlovski 1 Agenda KVM virtualization components Managing virtual servers Managing virtual resources Migrating running

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

SDN VPN user guide. Release draft (fd6f067) OPNFV

SDN VPN user guide. Release draft (fd6f067) OPNFV SDN VPN user guide Release draft (fd6f067) OPNFV August 23, 2016 CONTENTS 1 Introduction 1 2 SDN VPN feature description 3 3 Hardware requirements 5 3.1 Bare metal deployment on Pharos Lab..................................

More information

"Charting the Course... H8Q14S HPE Helion OpenStack. Course Summary

Charting the Course... H8Q14S HPE Helion OpenStack. Course Summary Course Summary Description This course will take students through an in-depth look at HPE Helion OpenStack V5.0. The course flow is optimized to address the high-level architecture and HPE Helion OpenStack

More information

Configuring and Benchmarking Open vswitch, DPDK and vhost-user. Pei Zhang ( 张培 ) October 26, 2017

Configuring and Benchmarking Open vswitch, DPDK and vhost-user. Pei Zhang ( 张培 ) October 26, 2017 Configuring and Benchmarking Open vswitch, DPDK and vhost-user Pei Zhang ( 张培 ) pezhang@redhat.com October 26, 2017 Agenda 1. Background 2. Configure Open vswitch, DPDK and vhost-user 3. Improve network

More information

Introduction to VPC-SI

Introduction to VPC-SI This chapter introduces Cisco Virtualized Packet Core Single Instance (VPC-SI). VPC-SI addresses the need for virtualized cloud architectures that enable the accelerated deployment of new applications

More information

Xen Summit Spring 2007

Xen Summit Spring 2007 Xen Summit Spring 2007 Platform Virtualization with XenEnterprise Rich Persaud 4/20/07 Copyright 2005-2006, XenSource, Inc. All rights reserved. 1 Xen, XenSource and XenEnterprise

More information

Installing the Server Operating System or Hypervisor

Installing the Server Operating System or Hypervisor Installing the Server Operating System or Hypervisor This chapter includes the following sections: Operating System or Hypervisor Installation Methods, page 1 KVM Console, page 1 PXE Installation Servers,

More information