FUTEBOL UFES User Manual

Size: px
Start display at page:

Download "FUTEBOL UFES User Manual"

Transcription

1 FUTEBOL UFES User Manual Authors Isabella de Albuquerque Ceravolo, Diego Cardoso - Universidade Federal do Espírito Santo Version 0.2 Abstract This document is a manual for the end-users of the FUTEBOL UFES testbed. It describes how to reserve the resources available at the UFES testbed, and also presents simple experiments that can be performed using those resources. Using those examples, the user will be able to build his/her own experiments.

2 This project has received funding from the European Union's Horizon 2020 for research, technological development, and demonstration under grant agreement no (FUTEBOL), as well from the Brazilian Ministry of Science, Technology and Innovation (MCTI) through RNP and CTIC. FUTEBOL Consortium Page 2 of 24

3 Document Revision History Version Date Description of change List of contributor(s) V0.1 12/12/2017 Description of how to allocate virtual machines V0.2 27/02/2018 Description of how to allocate virtual network functions FUTEBOL Consortium Page 3 of 24

4 Table of Contents 1 - Introduction 2 - Overall Description of the Testbed Map of the testbed 2.3 Functional Layers of the Testbed Setting up an Experiment 3. Experiments with Virtual Machines Virtual Machine RSpec Description Examples of a VM Experiments One Node Three Nodes 4. Experiments with Virtual Network Functions Virtual Network Functions RSpec Description Examples of a VNF Experiments Using a VNF template Using a quota of the cloud resources FUTEBOL Consortium Page 4 of 24

5 1 - Introduction The main objective of this document is to serve as a user guide for experimenters wishing to make an experiment in the FUTEBOL UFES testbed. As such, we describe the resources available, how to make a reservation of those resources and we also present simple experiments using each type of resource. We assume that the reader is familiar with jfed, that is, the reader already has an account in jfed, and already knows how to book resources using the graphic user interfaces. If you are not familiar with jfed, please read first the tutorial available at Readers wishing to understand how the FUTEBOL UFES testbed reserves resources are directed to the FUTEBOL deliverables, most notably the deliverables related to Work Package 4 - Converged Optical/Wireless Control Framework. Those can be obtained in the main FUTEBOL web site at If you feel that there is something missing from this manual, or that a certain point requires further explanation, please contact the FUTEBOL UFES team using the futebol-ufes@googlegroups.com. FUTEBOL Consortium Page 5 of 24

6 2 - Overall Description of the Testbed The UFES testbed was designed to allow the experimentation in the cloud. The testbed provides virtual machines (VM), virtual network functions (VNF) and layer 2 connectivity between them Testbed resources In order to allow experimentation in a cloud environment, the testbed was built on the OpenStack IaaS platform. The physical resources used as compute nodes (which is used to provide VMs and VNFs) include: One DELL server model PowerEdge R730 used as compute node, equipped with one Intel Xeon E cores 2.2 GHz, 128GB RAM, 1TB SATA Hard Drive, 4 ethernet 1 gigabit NIC. This server runs Ubuntu LTS linux with KVM virtualization platform. One DELL server model PowerEdge R230 used as compute node, equipped with one Intel Xeon E cores 3.7 GHz, 32GB RAM, 500GB SATA Hard Drive, 4 ethernet 1 gigabit NIC. This server runs Ubuntu LTS linux with KVM virtualization platform. In addition to the resources visible by the users, OpenStack requires more resources to make its services available: another server for OpenStack s management modules and a switch to provide connectivity (e.g., a controller node) Map of the testbed The resources are placed in the testbed as indicated in the following diagram. FUTEBOL Consortium Page 6 of 24

7 Fig 1. Connection diagram of the testbed local setup. Note: The user can not specify the physical location of the virtual resources. 2.3 Functional Layers of the Testbed Logically, the testbed is composed of three layers: The bottom layer provides the physical elements, such as servers. The next layer corresponds to the virtualized infrastructure, represented by the VMs and VNFs being managed by testbed control framework. Finally, at the top sits the definition of each experiment that uses the resources provided by the lower layer. FUTEBOL Consortium Page 7 of 24

8 Fig 2. Functional layers The virtualized testbed is composed by a software stack which includes OpenStack and takes care of the resource reservation in the FUTEBOL UFES: O2CMF. It is a open testbed control framework developed by UFES. For details, please visit the O2CMF s website: Readers wishing to understand the O2CMF specifications are directed to the FUTEBOL deliverables, most notably the deliverables related to Work Package 4 Converged Optical/Wireless Control Framework. Those can be obtained in the main FUTEBOL web site at Setting up an Experiment Users will be able to setup an experiment using jfed. After the user sends the login information, the AM will authenticate the user, tell him/her which resources will be available to them through RSpecs, and interact with the O2CMF on behalf of the user in order to instantiate the available resources. The AM uses the GENI v3 API which is written as a wrapper of the reference AM. FUTEBOL Consortium Page 8 of 24

9 3. Experiments with Virtual Machines This section describes how to allocate VMs and how to run simple experiments to check the operability of the nodes Virtual Machine RSpec Description The example below presents a RSPEC for a VM: < node client_id= " node0 " exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= " vm-m1.small " > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+img- ubuntu16-cloud " /> </ sliver_type > < interface client_id= "node0: eth0 " > < ip address= " " netmask= " " type= " ipv4 " /> </ interface > </ node > The VM is defined in a node tag. The attribute client_id allows user to choose a friendly name for his/her VM. In order the describe the VM s configuration there are some tags that should be nested within the node tag. The sliver_type tag holds the configuration items for the flavor (the compute, memory, and storage capacity) of the VM. Valid options for the attribute name are presented in Table 1. Nested in the sliver_type tag, user can insert a disk_image tag to specify the operating system for the VM. The available images are also presented in the Table 1. Name Memory (MB) Disk (GB) VCPUs Image vm-m1.nano Cirros vm-m1.tiny vm-m1.small Cirros CentOS 7 Cirros CentOS 7 Fedora 27 Ubuntu 16 vm-m1.medium Cirros FUTEBOL Consortium Page 9 of 24

10 CentOS 7 Fedora 27 Ubuntu 16 vm-m1.large Cirros CentOS 7 Fedora 27 Ubuntu 16 Table 1. Openstack Flavor VM Resources User can configure the network interfaces of the VM using the tag interface. Besides to define a name for the interface, user should insert a ip tag nested within the interface tag. The attributes in this tag are: address: Defines the IP address of the network interface; netmask: Defines the network mask for the IP address; type: Defines the version of the IP address. Currently, the testbed only supports IPv4. Besides to the VM specification, the user may describe the LAN connectivity. Every VM s network interface should be connected to a bridge (an element that offers layer 2 connectivity) through a link. Links from one VM to another one are not allowed. The example below shows a RSPEC that describes a bridge: < node client_id= " bridge0 " exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= " bridge " /> < interface client_id= "bridge0: eth0 " /> < interface client_id= "bridge0: eth1 " /> < interface client_id= "bridge0: eth2 " /> </ node > The bridge is also defined in a node tag. The attribute client_id allows user to choose a friendly name for the bridge. In order describe which VMs are connected through the bridge, there are some tags that should be nested within the node tag. The sliver_type tag is used to specify the type of the resource. In this case, there is only one valid option for the name attribute: bridge. User also have to describe which network FUTEBOL Consortium Page 10 of 24

11 interfaces the bridge have (in order connect the VMs), using the interface tag. The value of its attribute, client_id, should be a friendly name for the interface. The example below shows a RSPEC that describes a link: < link client_id= " link1 " > < component_manager name= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" /> < interface_ref client_id= " node0:eth0 " /> < interface_ref client_id= " bridge0:eth1 " /> < link_type name= "lan" /> </ link > The link is defined in a link tag. The attribute client_id allows user to choose a friendly name for the link. Nested in the link tag, user can describe what the link connects: The client_id attribute, from interface_ref tag, describes one point of the link. It should be filled respecting the format: <device client_id> : < interface client_id > Examples of a VM Experiments One Node This is the most basic scenario, where user book only one VM in the testbed without to do any other type of configuration on the resource. The first step is to open jfed and log in. Then pick a Virtual Machine resource. The experiment should look like the Fig 3. FUTEBOL Consortium Page 11 of 24

12 Fig 3. An experiment using only one VM. Right click on the VM icon and select 'configure option'. You will see the the dialog presented in the Fig 4. Select the UFES testbed and then click save. Fig 4. Dialog for resource configuration. FUTEBOL Consortium Page 12 of 24

13 If you take a look at the RSpec Editor tab, you should see the following: <? xml version= '1.0'?> < rspec xmlns= " type= "request" xmlns: emulab = " xmlns: delay = " xmlns: jfed-command = " xmlns: client = " xmlns: jfed-ssh-keys = " xmlns: jfed = " xmlns: sharedvlan = " xmlns: xsi = " xsi :schemalocation= " " > < node client_id= "node0" exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= "vm-m1.small" /> < location xmlns= " x= "244.0" y= "157.0" /> </ node > </ rspec > Click on Run, on the top of the window. You should see the dialog presented in the Fig 5. Insert a name for your experiment and define how long it will last. Fig 5. Dialog for resource booking. After you start the experiment, it takes some time to resources become available. When the provisioning process finish, you can click with right button on the VM icon and then click on Open SSH terminal. The VM can be tested using the simple command below: sudo apt update FUTEBOL Consortium Page 13 of 24

14 Three Nodes This is a more advanced tutorial. The example below show a complete RSpec to allocate a three VMs connected through a bridge. <? xml version= '1.0'?> < rspec xmlns= " type= "request" xmlns: emulab = " xmlns: delay = " xmlns: jfed-command = " xmlns: client = " xmlns: jfed-ssh-keys = " xmlns: jfed = " xmlns: sharedvlan = " xmlns: xsi = " xsi :schemalocation= " " > < node client_id= "node0" exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= "vm-m1.small" > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+img-ubuntu16-cloud" /> </ sliver_type > < location xmlns= " x= "59.0" y= " " /> < interface client_id= "node0:eth0" > < ip address= " " netmask= " " type= "ipv4" /> </ interface > </ node > < node client_id= "node1" exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= "vm-m1.small" > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+img-ubuntu16-cloud" /> </ sliver_type > < location xmlns= " x= " " y= " " /> < interface client_id= "node1:eth0" > < ip address= " " netmask= " " type= "ipv4" /> </ interface > </ node > < node client_id= "node2" exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= "vm-m1.small" > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+img-ubuntu16-cloud" /> </ sliver_type > < location xmlns= " x= " " y= "25.0" /> < interface client_id= "node2:eth0" > < ip address= " " netmask= " " type= "ipv4" /> </ interface > </ node > < node client_id= "bridge0" exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= "bridge" /> < location xmlns= " x= " " y= " " /> < interface client_id= "bridge0:eth0" /> FUTEBOL Consortium Page 14 of 24

15 < interface client_id= "bridge0:eth1" /> < interface client_id= "bridge0:eth2" /> </ node > < link client_id= "link1" > < component_manager name= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" /> < interface_ref client_id= "node0:eth0" /> < interface_ref client_id= "bridge0:eth1" /> < link_type name= "lan" /> </ link > < link client_id= "link0" > < component_manager name= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" /> < interface_ref client_id= "node1:eth0" /> < interface_ref client_id= "bridge0:eth2" /> </ link > < link client_id= "link2" > < component_manager name= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" /> < interface_ref client_id= "node2:eth0" /> < interface_ref client_id= "bridge0:eth0" /> </ link > </ rspec > Paste the content above in the RSpec Editor tab on jfed. If you switch to the Topology Editor tab, you will see the following. Fig 6. An experiment with three nodes and one bridge. FUTEBOL Consortium Page 15 of 24

16 Start the experiment. After the allocation, open a terminal for each node. Let's test if the bridge works. On the node1 and node2 run the following command: sudo tcpdump -i ens3 src host The command above make the nodes capture any traffic passing on the interface ens3 (that we configured in the RSpec as eth0) from the node0. On the node0 run the following command: ping The command above makes the node send ping packets to node1. If everything went well, you should see node1 capturing packets while node2 do not captured any packet. FUTEBOL Consortium Page 16 of 24

17 4. Experiments with Virtual Network Functions This section describes how to allocate Virtual Network Functions (VNFs) and how to run simple experiments to check the operability of the resources Virtual Network Functions RSpec Description There are two ways to run an experiment using VNFs. The simplest way is to choose one template (VNF descriptor) available in the testbed. Such descriptors are TOSCA files specifying the VMs, the topology and the policies used to regulate the scale of the VNF. To check which descriptors are available in the UFES testbed, take a look at: The example below presents a RSPEC for a VNF descriptor: < nfv client_id= " my_vnf " component_manager_id= "urn:publicid:idn+futebolufes+authority+am" exclusive= "false" > < sliver_type name= " vnf " > < template name= " urn:publicid:idn+futebol.ufes.br+vnf+http_server.yaml " /> </ sliver_type > </ nfv > The VNF is defined in a nfv tag. The attribute client_id allows user to choose a friendly name for his/her VNF. The sliver_type tag must be vnf. Nested in the sliver_type tag, user should insert a template tag to specify which descriptor should be used to instantiate the operating system for the VM. The other way to make experiments using virtual network functions is to allocate a quota of raw resources in the cloud (e.g., an amount of vcpu, RAM memory and storage capacity). The quota represents a project (a.k.a., tenant ) inside the OpenStack. It provides the flexibility needed to create custom VNFs and instantiate VNFs dynamically (after the allocation and provisioning of the slice of the cloud). The example below presents a RSPEC which describes a quota of cloud resources: FUTEBOL Consortium Page 17 of 24

18 < vim client_id= " vim0 " component_manager_id= "urn:publicid:idn+futebolufes+authority+am" exclusive= "false" > < sliver_type name= " tenant " > < properties disk= " 120 " ram= " 5 " vcpu= " 3 " /> </ sliver_type > </ vim > The quota is defined in a vim tag. The attribute client_id allows user to choose a friendly name for the quota. The sliver_type tag must be tenant. Nested in the sliver_type tag, user should insert a properties tag to specify the amount of vcpu, RAM memory and storage capacity to be reserved for the experiment. The amount of memory and storage should be describe in Gigabytes. The user can mix VNF with the quota. However, each RSpec can contain, at most, one vim tag. Note: Besides to the use of VNF and/or quota, the user should include in the RSpec one VM which uses a disk image prepared for the orchestration of the VNF resources. Such VM is useful to enable the user to manage the VNF s life-cycle and access the instances (via SSH). More details will be given on the experiments tutorials. The example below shows an RSPEC that describes the orchestration VM: < node client_id= " orchestrator " exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= " vm-m1.small " > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+nfv- orchestrator " /> </ sliver_type > </ node > Examples of a VNF Experiments Using a VNF template In this scenario, the user will instantiate a VNF defined in of of the templates available in the testbed. This scenario demonstrates how the user can play with NFV with a high degree of automation and no need of deep knowledge on OpenStack or NFV. The description the VNF used in this tutorial is described below. FUTEBOL Consortium Page 18 of 24

19 tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0 description: Demo example metadata: template_name: vnf-demo topology_template: node_templates: VDU1: type: tosca.nodes.nfv.vdu.tacker capabilities: nfv_compute: properties: num_cpus: 1 mem_size: 512 MB disk_size: 1 GB properties: image: cirros x86_64-disk availability_zone: nova mgmt_driver: noop CP11: type: tosca.nodes.nfv.cp.tacker properties: management: true order: 0 anti_spoofing_protection: false requirements: - virtuallink: node: VL1 - virtualbinding: node: VDU1 VL1: type: tosca.nodes.nfv.vl properties: network_name: net_mgmt vendor: Tacker The first step is to open jfed and log in. Then go to RSpec Editor tab. Paste the following content in the editor. FUTEBOL Consortium Page 19 of 24

20 <? xml version= '1.0'?> < rspec xmlns= " type= "request" generated_by= "jfed RSpec Editor" generated= " T16:14: :00" xmlns: emulab = " xmlns: delay = " xmlns: jfed-command = " xmlns: client = " xmlns: jfed-ssh-keys = " xmlns: jfed = " xmlns: sharedvlan = " xmlns: xsi = " xsi :schemalocation= " " > < nfv client_id= "my_vnf" component_manager_id= "urn:publicid:idn+futebolufes+authority+am" exclusive= "false" > < sliver_type name= "vnf" > < template name= "vnf-demo.yaml" /> </ sliver_type > </ nfv > < node client_id= "orchestrator" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" exclusive= "false" > < sliver_type name= "vm-m1.small" > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+nfv-orchestrator" /> </ sliver_type > </ node > </ rspec > Start the experiment. After the allocation, go to Topology Viewer tab. You will see the following. FUTEBOL Consortium Page 20 of 24

21 Fig 7. The Topology Viewer tab. Click with right button on the VM icon and then click on Open SSH terminal. You can can view the IP addresses of the VMs composing the VNF using the simple command below: tacker vnf-list The command above interacts with OpenStack service responsible for the management of VNFs. You will see an output like this: [ { "status": "ACTIVE", "vnfd_id": " b-7f28-49f7-89e5-26e48702f835", "vim_id": "729ac2c7-664d-4ac4-937b-d36577b907a6", FUTEBOL Consortium Page 21 of 24

22 ] } "mgmt_url": "{\"VDU1\": \" \"}", "id": "66926cdd-56f acff-a8dd70fb9070", "name": "my_vnf" The value of the field mgmt_url contains the name of the VMs composing the VNf and its respective IP addresses. So you can access VDU1 (via SSH) Using a quota of the cloud resources This is a more advanced tutorial. In this scenario, the user will instantiate a project in the cloud and, after the allocation, will create a custom VNF. This scenario demonstrates how the user can play with NFV with a high degree of automation and no need of deep knowledge on OpenStack or NFV. The description the VNF used in this tutorial is described below. <? xml version= '1.0'?> < rspec xmlns= " type= "request" generated_by= "jfed RSpec Editor" generated= " T12:26: :00" xmlns: emulab = " xmlns: delay = " xmlns: jfed-command = " xmlns: client = " xmlns: jfed-ssh-keys = " xmlns: jfed = " xmlns: sharedvlan = " xmlns: xsi = " xsi :schemalocation= " > < node client_id= "orchestrator" exclusive= "false" component_manager_id= "urn:publicid:idn+futebol.inf.ufes.br+authority+cm" > < sliver_type name= "vm-m1.small" > < disk_image name= "urn:publicid:idn+futebol.inf.ufes.br+image+nfv-orchestrator" /> </ sliver_type > < location xmlns= " x= "50.0" y= "25.0" /> </ node > < vim client_id= "vim0" component_manager_id= "urn:publicid:idn+futebolufes+authority+am" exclusive= "false" > < sliver_type name= "tenant" > < properties disk= "120" ram= "16" vcpu= "8" /> </ sliver_type > </ vim > </ rspec > FUTEBOL Consortium Page 22 of 24

23 Paste the content above in the RSpec Editor tab in jfed. Start the experiment. After the allocation, go to the Topology Viewer Tab and open the SSH terminal for the orchestration VM. To create a custom VNF, we will use the following TOSCA file (VNF descriptor): tosca_definitions_version: tosca_simple_profile_for_nfv_1_0_0 description: simple-vnf metadata: template_name: simple-vnf topology_template: node_templates: VDU1: type: tosca.nodes.nfv.vdu.tacker properties: image: ubuntu16-cloud flavor: m1.small availability_zone: nova mgmt_driver: noop metadata: { metering.server_group: SG1} CP1: type: tosca.nodes.nfv.cp.tacker properties: management: true anti_spoofing_protection: false requirements: - virtuallink: node: VL1 - virtualbinding: node: VDU1 VL1: type: tosca.nodes.nfv.vl properties: network_name: net0 vendor: Tacker policies: - SP1: type: tosca.policies.tacker.scaling targets: [VDU1] properties: increment: 1 cooldown: 120 min_instances: 1 max_instances: 5 default_instances: 1 - vdu_cpu_usage_monitoring_policy: type: tosca.policies.tacker.alarming triggers: vdu_hcpu_usage_scaling_out: event_type: FUTEBOL Consortium Page 23 of 24

24 type: tosca.events.resource.utilization implementation: ceilometer meter_name: cpu_util condition: threshold: 70 constraint: utilization greater_than 30% period: 300 evaluations: 1 method: mean resource_type: instance comparison_operator: gt metadata: SG1 action: [SP1] Copy the content above to the orchestration VM (use simple-vnf.yaml as filename). The command below creates a new VNF using the file simple-vnf.yaml. tacker vnf-create --vnfd-template simple-vnf.yaml my-custom-vnf The command above interacts with Openstack to create the custom VNF. The option --vnfd-template indicates that use want to create a VNF based on the description given in the file simple-vnf.yaml. The parameter represented by my-custom-vnf is the name of the VNF instantiated. To see what are the VNFs running on the project, use the command below. If the creation of the VNF was successful, you will see my-custom-vnf on the list. tacker vnf-list To see more details of my-custom-vnf, use the command below: tacker vnf-show my-custom-vnf To delete of my-custom-vnf, use the command below: tacker vnf-delete my-custom-vnf FUTEBOL Consortium Page 24 of 24

FUTEBOL UFRGS User Manual

FUTEBOL UFRGS User Manual FUTEBOL UFRGS User Manual Authors Draft Revision 0.1 Hugo Santos - Universidade Federal do Rio Grande do Sul Gustavo Araújo - Universidade Federal do Rio Grande do Sul Version 0.1 Abstract This document

More information

Template system for VNF management

Template system for VNF management Template system for management An open and standards compliant solution Dániel Fey Product Manager, CloudBand Application Manager Gábor Márton Chief Architect, CloudBand Application Manager 07-06-2017

More information

TOSCA Templates for NFV and network topology description

TOSCA Templates for NFV and network topology description TOSCA Templates for NFV and network topology description CYCLONE Technical paper September 2017 Table of Contents 1. OASIS Topology and Orchestration Specification for Cloud Applications (TOSCA)... 2 2.

More information

Andrew Pullin, Senior Software Designer, School of Computer Science / x4338 / HP5165 Last Updated: October 05, 2015

Andrew Pullin, Senior Software Designer, School of Computer Science / x4338 / HP5165 Last Updated: October 05, 2015 SCS OpenStack Cloud Table of Contents Table of Contents... 1 Introduction... 2 Who Can Access the SCS OpenStack?... 2 SCS OpenStack Statistics... 3 Definitions... 3 How To... 4 Logging into the OpenStack

More information

Andrew Pullin, Senior Software Designer, School of Computer Science / x4338 / HP5165 Last Updated: September 26, 2016

Andrew Pullin, Senior Software Designer, School of Computer Science / x4338 / HP5165 Last Updated: September 26, 2016 SCS OpenStack Cloud Table of Contents Introduction... 2 Who Can Access the SCS OpenStack?... 2 SCS OpenStack Statistics... 3 Definitions... 3 Using the Openstack Web Interface... 4 Logging into the OpenStack

More information

FUTEBOL UFMG User Manual

FUTEBOL UFMG User Manual FUTEBOL UFMG User Manual Authors Version 0.3 Abstract Fernanda Aparecida R. Silva - Universidade Federal de Minas Gerais Julio Cesar Tadeu Guimarães - Universidade Federal de Minas Gerais Matheus Henrique

More information

How to Deploy Virtual Test Agents in OpenStack

How to Deploy Virtual Test Agents in OpenStack How to Deploy Virtual Test Agents in OpenStack Executive Summary This guide explains how to deploy Netrounds Virtual Test Agents (vtas) in OpenStack and how to control these from Netrounds Control Center.

More information

Quick Start Guide to Compute Canada Cloud Service

Quick Start Guide to Compute Canada Cloud Service Quick Start Guide to Compute Canada Cloud Service Launching your first instance (VM) Login to the East or West cloud Dashboard SSH key pair Importing an existing key pair Creating a new key pair Launching

More information

Implementation Guide Release 7.3.5

Implementation Guide Release 7.3.5 [1Oracle Communications Network Service Orchestration Implementation Guide Release 7.3.5 E80746-01 February 2017 Oracle Communications Network Service Orchestration Implementation Guide, Release 7.3.5

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

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

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

Enterprise Network Compute System (ENCS)

Enterprise Network Compute System (ENCS) Enterprise Network Compute System (ENCS) Cisco vbranch Architecture Per Jensen, per@cisco.com Sept 2017 Agenda: Tech Update september-2017 1. ENCS update + demo v/per 2. Viptela update + demo v/dr Søren

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

NFV Orchestration Implementation Guide Release 7.4

NFV Orchestration Implementation Guide Release 7.4 [1Oracle Communications Unified Inventory Management NFV Orchestration Implementation Guide Release 7.4 E88928-01 December 2017 Oracle Communications Unified Inventory Management NFV Orchestration Implementation

More information

Build Cloud like Rackspace with OpenStack Ansible

Build Cloud like Rackspace with OpenStack Ansible Build Cloud like Rackspace with OpenStack Ansible https://etherpad.openstack.org/p/osa-workshop-01 Jirayut Nimsaeng DevOps & Cloud Architect 2nd Cloud OpenStack-Container Conference and Workshop 2016 Grand

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

OSM Hackfest Session 3 Modeling multi-vdu VNF. Gianpietro Lavado (Whitestack)

OSM Hackfest Session 3 Modeling multi-vdu VNF. Gianpietro Lavado (Whitestack) OSM Hackfest Session 3 Modeling multi-vdu VNF Gianpietro Lavado (Whitestack) VNF diagram External Connection point: vnf-mgmt External Connection point: vnf-data VNF: hackfest2-vnf VL: internal mgmtvm-eth0

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

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

FUTEBOL UFMG User Manual

FUTEBOL UFMG User Manual FUTEBOL UFMG User Manual Authors Version 0.4 Abstract Fernanda Aparecida R. Silva - Universidade Federal de Minas Gerais Julio Cesar Tadeu Guimarães - Universidade Federal de Minas Gerais Matheus Henrique

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

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

DEPLOYING NFV: BEST PRACTICES

DEPLOYING NFV: BEST PRACTICES DEPLOYING NFV: BEST PRACTICES Rimma Iontel Senior Cloud Architect, Cloud Practice riontel@redhat.com Julio Villarreal Pelegrino Principal Architect, Cloud Practice julio@redhat.com INTRODUCTION TO NFV

More information

Cisco Modeling Labs OVA Installation

Cisco Modeling Labs OVA Installation Prepare for an OVA File Installation, page 1 Download the Cisco Modeling Labs OVA File, page 2 Configure Security and Network Settings, page 2 Deploy the Cisco Modeling Labs OVA, page 12 Edit the Virtual

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

Virtualized Infrastructure Managers for edge computing: OpenVIM and OpenStack comparison IEEE BMSB2018, Valencia,

Virtualized Infrastructure Managers for edge computing: OpenVIM and OpenStack comparison IEEE BMSB2018, Valencia, Virtualized Infrastructure Managers for edge computing: OpenVIM and OpenStack comparison IEEE BMSB2018, Valencia, 2018-06-08 Teodora Sechkova contact@virtualopensystems.com www.virtualopensystems.com Authorship

More information

Lab Assignment 4 for ECE671 Posted: 11/15/16 Due: 11/29/16. Network Address Translation (NAT) on GENI

Lab Assignment 4 for ECE671 Posted: 11/15/16 Due: 11/29/16. Network Address Translation (NAT) on GENI ECE671: Lab Assignment 4 1 Lab Assignment 4 for ECE671 Posted: 11/15/16 Due: 11/29/16 Network Address Translation (NAT) on GENI This assignment builds on assignment 3 and has the goal to introduce you

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

Cloud CPE Solution Release Notes

Cloud CPE Solution Release Notes Cloud CPE Solution Release Notes Release 2.1 10 February 2017 Revision 3 These Release Notes accompany Release 2.1 of the Juniper Networks Cloud CPE Solution. They contain installation information, and

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

VNF OPERATION USE CASES. Thinh Nguyenphu, ETSI NFV SOL Vice-Chair, Nokia Bell Labs and CTO Nokia

VNF OPERATION USE CASES. Thinh Nguyenphu, ETSI NFV SOL Vice-Chair, Nokia Bell Labs and CTO Nokia OPERATION USE CASES Thinh Nguyenphu, ETSI NFV SOL Vice-Chair, Nokia Bell Labs and CTO Nokia Operation Use Cases Package Management (e.g. On-board a Package) Lifecycle Management (e.g. Instantiate, Scale

More information

ETSI NFV CONCEPTS AND MANO DETAILS NFV#19 TUTORIAL 11 SEPTEMBER

ETSI NFV CONCEPTS AND MANO DETAILS NFV#19 TUTORIAL 11 SEPTEMBER ETSI NFV CONCEPTS AND MANO DETAILS NFV#19 TUTORIAL 11 SEPTEMBER 2017 Jeremy Fuller (IFA Chair, GENBAND) with input from many others, including: U. Rauschenbach (Nokia), M. Flauw (HPE), B. Chatras (Orange),

More information

Using the vrealize Orchestrator OpenStack Plug-In 2.0. Modified on 19 SEP 2017 vrealize Orchestrator 7.0

Using the vrealize Orchestrator OpenStack Plug-In 2.0. Modified on 19 SEP 2017 vrealize Orchestrator 7.0 Using the vrealize Orchestrator OpenStack Plug-In 2.0 Modified on 19 SEP 2017 vrealize Orchestrator 7.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Adaptive MAC (TDMA/CSMA)

Adaptive MAC (TDMA/CSMA) FUTEBOL Federated Union of Telecommunications Research Facilities for an EU-Brazil Open Laboratory Adaptive MAC (TDMA/CSMA) Based on paper FS-MAC: Uma Plataforma para a Flexibilização da Sub-Camada MAC

More information

OSM Hackfest Session 1 Installation and first use. Gianpietro Lavado (Whitestack)

OSM Hackfest Session 1 Installation and first use. Gianpietro Lavado (Whitestack) OSM Hackfest Session 1 Installation and first use Gianpietro Lavado (Whitestack) OSM installation Click HERE 2 Installing OSM Using a pre-built vagrant image for Virtualbox Instructions when using remote

More information

ElasterStack 3.2 User Administration Guide - Advanced Zone

ElasterStack 3.2 User Administration Guide - Advanced Zone ElasterStack 3.2 User Administration Guide - Advanced Zone With Advance Zone Configuration TCloud Computing Inc. 6/22/2012 Copyright 2012 by TCloud Computing, Inc. All rights reserved. This document is

More information

OpenStack Admin User Guide

OpenStack Admin User Guide docs.openstack.org OpenStack Admin User Guide current (2014-12-10) Copyright 2014 OpenStack Foundation Some rights reserved. OpenStack is an open source cloud computing platform for public and private

More information

OSM Hackfest - Session 5 Adding day-1/day-2 configuration to your VNF Creating your first proxy charm

OSM Hackfest - Session 5 Adding day-1/day-2 configuration to your VNF Creating your first proxy charm OSM Hackfest - Session 5 Adding day-1/day-2 configuration to your VNF Creating your first proxy charm Adam Israel, Canonical Gerardo García, Telefónica What is Juju? Juju is an open source modeling tool,

More information

IBM Single Sign On for Bluemix Version December Identity Bridge Configuration topics

IBM Single Sign On for Bluemix Version December Identity Bridge Configuration topics IBM Single Sign On for Bluemix Version 2.0 28 December 2014 Identity Bridge Configuration topics IBM Single Sign On for Bluemix Version 2.0 28 December 2014 Identity Bridge Configuration topics ii IBM

More information

Design a Topology. Design a Topology Overview. Topology Nodes and Connections

Design a Topology. Design a Topology Overview. Topology Nodes and Connections Overview, page 1 Topology Nodes and Connections, page 1 Create a Topology, page 4 Place the Nodes on the Canvas, page 5 Create Connections and Interfaces, page 6 Use Unmanaged Switches, page 6 The Cisco

More information

FileCruiser VM Quick Configuration Guide For Trial Version V1.0

FileCruiser VM Quick Configuration Guide For Trial Version V1.0 FileCruiser VM Quick Configuration Guide For Trial Version V1.0 Contents How to configure FileCruiser VM... 4 Setup Wizard: Time Zone page... 6 Setup Wizard: Network page... 7 Setup Wizard: Service Server

More information

The Total Newbie s Introduction to Heat Orchestration in OpenStack

The Total Newbie s Introduction to Heat Orchestration in OpenStack Tutorial The Total Newbie s Introduction to Heat Orchestration in OpenStack OpenStack is undeniably becoming part of the mainstream cloud computing world. It is emerging as the new standard for private

More information

Intro to OpenFlow Tutorial

Intro to OpenFlow Tutorial GENIExperimenter/Tutorials/OpenFlowOVS-Floodlight GENI: geni Intro to OpenFlow Tutorial Overview: This is a simple OpenFlow tutorial that will guide you how to use the Floodlight Controller in conjunction

More information

OSM R1 - VNF PACKAGE CREATION, UI & ONBOARDING

OSM R1 - VNF PACKAGE CREATION, UI & ONBOARDING OSM R1 - VNF PACKAGE CREATION, UI & ONBOARDING Noel Charath (RIFT.io) OSM R1- VNF PACKAGE CREATION AND ON-BOARDING RX10033 GETTING STARTED WITH OSM R1 INSTALL OSM R1 CREATE VNF & NS PACKAGES ONBOARD VNF

More information

Building a Platform Optimized for the Network Edge

Building a Platform Optimized for the Network Edge Building a Platform Optimized for the Network Edge MPLS + SDN + NFV WORLD 2018 Nicolas Bouthors, Enea Innovation Agenda Software Virtualization - Key Requirements Leveraging DPDK Multi-Function VNFs at

More information

Cross-Site Virtual Network Provisioning in Cloud and Fog Computing

Cross-Site Virtual Network Provisioning in Cloud and Fog Computing This paper was accepted for publication in the IEEE Cloud Computing. The copyright was transferred to IEEE. The final version of the paper will be made available on IEEE Xplore via http://dx.doi.org/10.1109/mcc.2017.28

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

Cloud e Datacenter Networking

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

More information

Towards Practical Multi-layer Performance Management in Cloud Networking and NFV Infrastructures

Towards Practical Multi-layer Performance Management in Cloud Networking and NFV Infrastructures Towards Practical Multi-layer Performance Management in Cloud Networking and NFV Infrastructures COST 134 MC meeting, Lovran, Croatia, Oct. 215. Kurt Tutschku Blekinge Institute of Technology (BTH), Faculty

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

Auto-Scaling Capability Support in ONAP

Auto-Scaling Capability Support in ONAP Auto-Scaling Capability Support in ONAP Rashmin Patel Network Platforms Group, Intel Corporation December 12, 2017 Agenda Edge NFV Introduction Telco s Scalability Core Infrastructure Operations Generic

More information

OSM: 7 FULLY FUNCTIONAL DEMOS Vanessa Little (VMware) - OSM TSC Chair

OSM: 7 FULLY FUNCTIONAL DEMOS Vanessa Little (VMware) - OSM TSC Chair ETSI 2017 10 OSM: 7 FULLY FUNCTIONAL DEMOS Vanessa Little (VMware) - OSM TSC Chair September 27, 2018 ONS Europe, 2018 OSM COMMUNITY IS REALLY LARGE AND DIVERSE, WITH 106 MEMBERS TODAY 11 Global Service

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

Guide. Cloudistics Ignite: Setup and Configuration Guide

Guide. Cloudistics Ignite: Setup and Configuration Guide Guide Cloudistics Ignite: Setup and Configuration Guide Contents Introduction... 3 Step 1: Configure Ignite Uplink Network... 4 1.1 Console into each Ignite SDN Router... 4 1.2 Configure the IP address(es)

More information

Progress report on NFV standardization in ETSI.

Progress report on NFV standardization in ETSI. Progress report on NFV standardization in ETSI. NetV: IRISA / Technicolor Workshop on Network Virtualization Bruno CHATRAS, Orange, ETSI NFV ISG Vice-Chairman 1 Agenda Overview Selected technical items

More information

DriveScale Administration Guide version 1.3

DriveScale Administration Guide version 1.3 DriveScale Administration Guide version 1.3 Overview This Administrator's Guide covers information on managing your DriveScale domains, after you have installed the DriveScale software components. It also

More information

Tenant Onboarding. Tenant Onboarding Overview. Tenant Onboarding with Virtual Data Centers

Tenant Onboarding. Tenant Onboarding Overview. Tenant Onboarding with Virtual Data Centers Overview, page 1 with Virtual Data Centers, page 1 with Resource Groups, page 5 Overview In Cisco UCS Director, tenants enable you to securely control and allocate the virtual and physical infrastructure

More information

Red Hat OpenStack Platform 10 Product Guide

Red Hat OpenStack Platform 10 Product Guide Red Hat OpenStack Platform 10 Product Guide Overview of Red Hat OpenStack Platform OpenStack Team Red Hat OpenStack Platform 10 Product Guide Overview of Red Hat OpenStack Platform OpenStack Team rhos-docs@redhat.com

More information

Virtual Business Servers technical description

Virtual Business Servers technical description Virtual Business Servers technical description Virtual Business Servers have been developed under an extremely advanced computing platform. The product combines, within a single solution, Parallels Cloud

More information

Sample VNF Rack and VNF Descriptor Configuration File

Sample VNF Rack and VNF Descriptor Configuration File Sample VNF Rack and VNF Descriptor Configuration File As described in Configure the VNF Rack and the VNF Descriptors, VNF rack configuration parameters are contained in the VIM Artifact Descriptor (vim-artifact).

More information

Cloud CPE Solution Release Notes

Cloud CPE Solution Release Notes Cloud CPE Solution Release Notes Release 3.1.1 14 December 2017 Revision 8 These Release Notes accompany Release 3.1.1 of the Juniper Networks Cloud CPE Solution. They contain installation information,

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

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

OpenStack Networking Services and Orchestration 2015 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION

OpenStack Networking Services and Orchestration 2015 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION OpenStack Networking Services and Orchestration 2015 BROCADE COMMUNICATIONS SYSTEMS, INC. COMPANY PROPRIETARY INFORMATION A Brief History of Networking Intelligent Industry Solutions Scale Architecture

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

Looking Beyond the Internet

Looking Beyond the Internet Looking Beyond the Internet The Rise of Software-Defined Infrastructure Chip Elliott, BBN celliott@bbn.com My thesis Software Defined Networking (SDN) was just an opening act A major transformation of

More information

CS-580K/480K Advanced Topics in Cloud Computing. OpenStack

CS-580K/480K Advanced Topics in Cloud Computing. OpenStack CS-580K/480K dvanced Topics in Cloud Computing OpenStack 1 Where we are 2 Virtualization Layer Operating System 1 2 3 4 Operating System 1 2 3 4 Operating System 1 2 3 4 VM1 VM2 VM3 Virtualization Layer

More information

Deliverable D3.4 5G-PPP Security Enablers Documentation (v1.0) Enabler VNF Certification

Deliverable D3.4 5G-PPP Security Enablers Documentation (v1.0) Enabler VNF Certification Deliverable D3.4 5G-PPP Security Enablers Documentation (v1.0) Enabler VNF Certification Project name 5G Enablers for Network and System Security and Resilience Short name 5G-ENSURE Grant agreement 671562

More information

VMware vcloud Air User's Guide

VMware vcloud Air User's Guide vcloud Air This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

Contrail Cloud Platform Architecture

Contrail Cloud Platform Architecture Contrail Cloud Platform Architecture Release 10.0 Modified: 2018-04-04 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the Juniper

More information

NETWORK Functions Virtualization (NFV) has attracted

NETWORK Functions Virtualization (NFV) has attracted IEEE TRANSACTIONS ON NETWORK AND SERVICE MANAGEMENT, VOL. 14, NO. 4, DECEMBER 2017 817 VirtPhy: Fully Programmable NFV Orchestration Architecture for Edge Data Centers Cristina K. Dominicini, Gilmar L.

More information

Mobile World Congress 2016 OPEN SOURCE MANO (OSM) E2E Orchestration Demo. February 2016

Mobile World Congress 2016 OPEN SOURCE MANO (OSM) E2E Orchestration Demo. February 2016 osm.etsi.org Mobile World Congress 2016 OPEN SOURCE MANO () E2E Orchestration Demo February 2016 Open Source MANO () aims to accelerate NFV adoption around a common IM for orchestration Delivering an open

More information

Cymmetria MazeRunner INSTALLATION GUIDE

Cymmetria MazeRunner INSTALLATION GUIDE Cymmetria MazeRunner INSTALLATION GUIDE September 12, 2016 Supported environments (all must have nested virtualization enabled follow the links below to learn more) VMware Player (7 or higher) VMware Workstation

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

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

WIND RIVER TITANIUM CLOUD FOR TELECOMMUNICATIONS

WIND RIVER TITANIUM CLOUD FOR TELECOMMUNICATIONS WIND RIVER TITANIUM CLOUD FOR TELECOMMUNICATIONS Carrier networks are undergoing their biggest transformation since the beginning of the Internet. The ability to get to market quickly and to respond to

More information

Red Hat OpenStack Platform 14

Red Hat OpenStack Platform 14 Red Hat OpenStack Platform 14 Quick Start Guide Creating an all-in-one OpenStack cloud for test and proof-of-concept environments Last Updated: 2019-02-11 Red Hat OpenStack Platform 14 Quick Start Guide

More information

TOSCA Simple Profile for Network Functions Virtualization (NFV) Version 1.0

TOSCA Simple Profile for Network Functions Virtualization (NFV) Version 1.0 TOSCA Simple Profile for Network Functions Virtualization (NFV) Version 1.0 Committee Specification Draft 02 01 October 2015 Specification URIs This version: http://docs.oasis-open.org/tosca/tosca-nfv/v1.0/csd02/tosca-nfv-v1.0-csd02.pdf

More information

Traffic Isolation on Multi-Tenant Data Center Networks

Traffic Isolation on Multi-Tenant Data Center Networks Traffic Isolation on Multi-Tenant Data Center Networks Heitor Moraes Universidade Federal de Minas Gerais motta@dcc.ufmg.br Marcos A. M. Vieira Universidade Federal de Minas Gerais mmvieira@dcc.ufmg.br

More information

Contrail Cloud Platform Architecture

Contrail Cloud Platform Architecture Contrail Cloud Platform Architecture Release 13.0 Modified: 2018-08-23 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the Juniper

More information

Customize OpenStack for Telco NFV

Customize OpenStack for Telco NFV Security Level: Customize OpenStack for Telco NFV Tianran Zhou (zhoutianran@huawei.com) Feng Dong (albert.dongfeng@huawei.com) www.huawei.com HUAWEI TECHNOLOGIES CO., LTD. Motivation Linux as a general

More information

ToMaTo. Topology Management Tool

ToMaTo. Topology Management Tool ToMaTo Topology Management Tool Dennis Schwerdel University of Kaiserslautern, Germany Department of Computer Science Integrated Communication Systems ICSY http://www.icsy.de Introduction ToMaTo is a topology-oriented

More information

getting started guide

getting started guide Pure commitment. getting started guide Cloud Native Infrastructure version 2.0 Contents Introduction... 3 Intended audience... 3 Logging in to the Cloud Native Infrastructure dashboard... 3 Creating your

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

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( )

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( ) Oracle Enterprise Manager Ops Center Creating vservers 12c Release 1 (12.1.4.0.0) E27357-02 June 2013 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops Center. Introduction

More information

Dhcp With Manual Address Windows Server 2008 R2 Vlan

Dhcp With Manual Address Windows Server 2008 R2 Vlan Dhcp With Manual Address Windows Server 2008 R2 Vlan I have set static IP addresses on the Server 2008R2 host and Internet Router. If I allow DHCP to set the IP to 192.168.20.5, I can RDP into and ping

More information

Security Enhancements

Security Enhancements https://www.shield-h2020.eu/ Security Enhancements By means of NFV and Cognitive Security Managed Security Services (MSS) and NFV NFV becomes a key enabler for security services Security VNFs are emerging

More information

OpenStack Architecture and Pattern Deployment with Heat. OpenStack Architecture and Pattern Deployment using Heat Ruediger Schulze

OpenStack Architecture and Pattern Deployment with Heat. OpenStack Architecture and Pattern Deployment using Heat Ruediger Schulze OpenStack Architecture and Pattern Deployment using Heat Ruediger Schulze Agenda 1. OpenStack Architecture 2. Pattern Deployment with Heat 3. Summary 2 What is OpenStack? At its most basic level, OpenStackis

More information

vedge Cloud Datasheet PRODUCT OVERVIEW DEPLOYMENT USE CASES EXTEND VIPTELA OVERLAY INTO PUBLIC CLOUD ENVIRONMENTS

vedge Cloud Datasheet PRODUCT OVERVIEW DEPLOYMENT USE CASES EXTEND VIPTELA OVERLAY INTO PUBLIC CLOUD ENVIRONMENTS vedge Cloud Datasheet PRODUCT OVERVIEW Viptela vedge Cloud is a software router platform that supports entire range of capabilities available on the physical vedge-100, vedge-1000 and vedge-2000 router

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

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

CloudLab. Updated: 5/24/16

CloudLab. Updated: 5/24/16 2 The Need Addressed by Clouds are changing the way we look at a lot of problems Impacts go far beyond Computer Science but there's still a lot we don't know, from perspective of Researchers (those who

More information

Introduction. Delivering Management as Agile as the Cloud: Enabling New Architectures with CA Technologies Virtual Network Assurance Solution

Introduction. Delivering Management as Agile as the Cloud: Enabling New Architectures with CA Technologies Virtual Network Assurance Solution Delivering Management as Agile as the Cloud: Enabling New Architectures with CA Technologies Virtual Network Assurance Solution Introduction Service providers and IT departments of every type are seeking

More information

NFVI Deployment Automation

NFVI Deployment Automation Feature Summary and Revision History, page 1 Feature Description, page 2 AutoDeploy Configuration File Changes, page 3 UWS Service Deployment Configuration File Changes, page 5 Feature Summary and Revision

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

Design a Topology. Design a Topology Overview. Topology Nodes and Connections

Design a Topology. Design a Topology Overview. Topology Nodes and Connections Overview, page 1 Topology Nodes and Connections, page 1 Create a Topology Project, page 3 Create a Topology, page 5 Place the Nodes on the Canvas, page 6 Create Connections and Interfaces, page 7 Create

More information

CloudKitty Hands-on 1 / 59

CloudKitty Hands-on 1 / 59 CloudKitty Hands-on 1 / 59 Let s meet your hosts! 2 / 59 Let s meet your hosts! Today s speakers Luka Peschke (Objectif Libre) Cloud Consultant / Core CloudKitty Ludovic Logiou (Objectif Libre) Cloud Consultant

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