Port Channel for Cisco Cloud Services Platform (CSP)

Size: px
Start display at page:

Download "Port Channel for Cisco Cloud Services Platform (CSP)"

Transcription

1 Page 1 of 8

2 Port Channel for Cisco Cloud Services Platform (CSP) 2100 view online To improve available network bandwidth and fault tolerance, multiple virtual function (VF) network interfaces assigned to Avi Service Engines can be aggregated to form port channels or bonded interfaces. ## Topology ## Prerequisites * No port channel specific configuration is needed on the switch. * To get the intended benefit, port channel member interfaces should be associated with different physical function (PF) devices or pnics. * CSP configuration SRIOV should be enabled on CSP pnics being used. The following CSP command could be used for this. avinet-1(config)# pnic enp7s0f0 sr-iov numvfs 32 switchmode vep Configuration The member (slave) interfaces to be bonded together to form a port channel (bond) could be configured using Avi SE metadata (yml) file as follows. Copyright 2018 Avi Networks, Inc. Page 2 of 8

3 avi.bond-ifs.se: '1,2' The above configuration directs the Service Engine to bond together interfaces 1 and 2 to form a port channel. If multiple port channels are required, the indices of member interfaces for different port channels should be specified with space in-between as shown below. avi.bond-ifs.se: '1,2 3,4' The above configuration makes the SE create two port channels - one with interfaces 1 and 2, and the other with interfaces 3 and 4. Once the SE is up, the?edit Service Engine? page in the Controller shows information about bonded and slave interfaces. Run the CLI command show serviceengine <se_ip_address> interface </se_ip_address> to view the interface configuration. [admin: ]: > show serviceengine interface Field Value se_uuid :se-bb2c9806-fe17-4c66-9fb0-dd5b89a456f8 proc_id PROC_Aggregate Copyright 2018 Avi Networks, Inc. Page 3 of 8

4 vnics[1] vnic_name eth2 vnic_id 4 mac_address 02:5a:80:02:11:0c interface_stats ipackets ibytes ierrors 0 rx_nombuf 0 opackets 0 obytes 0 oerrors 0 rx_kni 0 tx_kni 2175 tx_kni_errs 0 ip_checksum_drops 0 l4_checksum_drops 0 tx_queue_full_retries 0 rx_pkt_iterations rx_queue_full 0 rx_max_single_burst 22 rx_mim_etype_p2s 0 tx_mim_etype_p2s 0 tx_mim_frags_etype_p2s 0 rx_mim_etype_s2p 0 tx_mim_etype_s2p 0 tx_mim_frags_etype_s2p 0 tx_frags_p2s 0 local_flow_probes_req_sent 0 local_flow_probes_req_received 0 flow_probes_ignored_same_vnic 0 flow_probes_ignored_in_tw 0 vnic_parent 4 vnic_weight -1 vlan_id 0 num_vs_delete_drops 0 vrf_id 1 vrf_ref global vnic_mtu 1500 interface_disabled False linux_intf_name eth2 vnic_owner 0 vnics[2] vnic_name eth1 vnic_id 5 mac_address 02:4a:80:02:11:0c interface_stats ipackets ibytes ierrors 0 rx_nombuf 0 Copyright 2018 Avi Networks, Inc. Page 4 of 8

5 opackets obytes oerrors 0 rx_kni 0 tx_kni 2175 tx_kni_errs 0 ip_checksum_drops 0 l4_checksum_drops 0 tx_queue_full_retries 0 rx_pkt_iterations rx_queue_full 0 rx_max_single_burst 22 rx_mim_etype_p2s 0 tx_mim_etype_p2s 0 tx_mim_frags_etype_p2s 0 rx_mim_etype_s2p 0 tx_mim_etype_s2p 0 tx_mim_frags_etype_s2p 0 tx_frags_p2s 0 local_flow_probes_req_sent 0 local_flow_probes_req_received 0 flow_probes_ignored_same_vnic 0 flow_probes_ignored_in_tw 0 vnic_parent 5 vnic_weight -1 vlan_id 0 num_vs_delete_drops 0 vrf_id 1 vrf_ref global vnic_mtu 1500 interface_disabled False linux_intf_name eth1 vnic_owner 0 vnics[3] vnic_name bond0 vnic_id 32 mac_address 02:5a:80:02:11:0c ip_info[1] ip_addr net_mask ip_info[2] ip_addr net_mask ip_info[3] ip_addr net_mask interface_stats ipackets ibytes ierrors 0 rx_nombuf 0 Copyright 2018 Avi Networks, Inc. Page 5 of 8

6 opackets obytes oerrors 0 rx_kni 0 tx_kni 0 tx_kni_errs 0 ip_checksum_drops 0 l4_checksum_drops 0 tx_queue_full_retries 0 rx_pkt_iterations 0 rx_queue_full 0 rx_max_single_burst 0 rx_mim_etype_p2s 0 tx_mim_etype_p2s 0 tx_mim_frags_etype_p2s 0 rx_mim_etype_s2p 0 tx_mim_etype_s2p 0 tx_mim_frags_etype_s2p 0 tx_frags_p2s 0 local_flow_probes_req_sent 0 local_flow_probes_req_received 0 flow_probes_ignored_same_vnic 0 flow_probes_ignored_in_tw 0 vnic_parent 32 vnic_weight -1 vlan_id 0 num_vs_delete_drops 0 vrf_id 1 vrf_ref global vnic_mtu 1500 mbr_intfs[1] if_name eth2 linux_name eth2 active True mbr_intfs[2] if_name eth1 linux_name eth1 active True interface_disabled False linux_intf_name bond0 vnic_owner <code></code> <code> <h2 id="troubleshooting">troubleshooting</h2> <h3 id="linux-interface-configuration" >1. Linux interface configuration</h3> <p>after port channel has been successfully configured, the Linux network interface configuration file (<code>/etc/network/interfaces< /code>) includes information about bonded and slave interfaces as shown in the example below.</p> When the Avi SE metadata file has <code>avi.bond-ifs.se:?1,2?</code>, the SE makes Linux form a bonding interface (bond0) with interfaces eth1 and eth2 as slaves. The Copyright 2018 Avi Networks, Inc. Page 6 of 8

7 following configuration features in the interface configuration file (<code>/etc/network /interfaces</code>) in the default namespace. <pre> auto eth1 iface eth1 inet manual bondmaster bond0 auto eth2 iface eth2 inet manual bond-master bond0 auto bond0 iface bond0 inet manual bond-mode balance-xor bond-miimon 100 bond-slaves eth1 eth2 </pre> <h3 id=" interface-configuration-inside-avi-vantage-namespace">2. Interface configuration inside Avi Vantage namespace</h3> Inside the namespace (avi_ns1), <code>ip addr</code> gives the following information with the bonded and slave interfaces using the same MAC address. <pre> avi_bond0: <broadcast,multicast,master,up,lower_up> mtu 1500 qdisc noqueue state UNKNOWN group default link/ether XX:XX:XX:XX:XX:XX brd ff:ff:ff:ff:ff:ff inet YY.YY.YY.YY /ZZ scope global avi_bond0 valid_lft forever preferred_lft forever avi_eth2: <broadcast, multicast,slave,up,lower_up> mtu 1500 qdisc pfifo_fast master avi_bond0 state UP group default qlen 1000 link/ether XX:XX:XX:XX:XX:XX brd ff:ff:ff:ff:ff:ff avi_eth1: <broadcast, multicast,slave,up,lower_up> mtu 1500 qdisc pfifo_fast master avi_bond0 state UP group default qlen 1000 link/ether XX:XX:XX:XX:XX:XX brd ff:ff:ff:ff:ff:ff </broadcast,multicast, slave,up,lower_up> </broadcast,multicast,slave,up,lower_up> </broadcast,multicast,master, up,lower_up></pre> <h3 id="bond-configuration-inside-ave-vantage-namespace">3. Bond configuration inside Ave Vantage namespace</h3> Inside the namespace (avi_ns1), <code>/proc /net/bonding/avi_bond0</code> gives the information about bond configuration. <pre> Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) Bonding Mode: load balancing (xor) Transmit Hash Policy: layer3+4 (1) MII Status: up MII Polling Interval (ms): 100 Up Delay (ms): 0 Down Delay (ms): 0 Slave Interface: avi_eth2 MII Status: up Speed: Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 02:5a:80:02:11:0c Slave queue ID: 0 Slave Interface: avi_eth1 MII Status: up Speed: Mbps Duplex: full Link Failure Count: 0 Permanent HW addr: 02:4a:80:02:11:0c Slave queue ID: 0 </pre> <ul> <li>mii status shows the physical link status of the interfaces.</li> <li>bond mode should be <code>xor< /code>.</li> <li>permanent HW addresses of the slaves are the original MAC addresses and should be different for each of the slaves. ### 4. Statistics Statistics of interfaces in the output of <code>show serviceengine <se_ip_address> interface </se_ip_address></code> can be used to see if traffic is being distributed fairly among the slave interfaces. A balanced distribution results in comparable statistics for all slave interfaces if all of them were active together during their lifetime.</li> </ul> <h3 id="csp-pnic-and-sriovconfiguration">5. CSP pnic and SRIOV Configuration</h3> The following commands in CSP shell help identify errors in pnic and SRIOV configuration in CSP. * SRIOV status on pnics helps make sure that SRIOV is on for pnics of interest. <pre><code> avinet-1# show runningconfig pnic sr-iov pnic enp7s0f0 sr-iov numvfs 32 sr-iov switchmode veb! pnic enp7s0f1 sriov numvfs 32 sr-iov switchmode veb! avinet-1# show pnic enp7s0f0 passthrough passthrough sriov avinet-1# show pnic enp7s0f0 sriov_intf sriov_intf sriov_pf </code></pre> <ul> <li>view the virtual function usage on a pnic as shown below. <pre> avinet-1# show pnic enp7s0f0 vfnics VF INUSE SERVICE IDX NAME FLAG OWNER enp7s16 in-use none 1 enp7s16f2 in-use none 2 enp7s16f4 in-use none 3 enp7s16f6 in-use none 4 enp7s17 in-use none 5 enp7s17f2 in-use none 6 enp7s17f4 in-use none 7 enp7s17f6 notused none 8 enp7s18 not-used none 9 enp7s18f2 not-used none 10 enp7s18f4 not-used none 11 enp7s18f6 not-used none 12 enp7s19 not-used none 13 enp7s19f2 not-used none 14 enp7s19f4 not-used none 15 enp7s19f6 not-used none 16 enp7s20 not-used none 17 enp7s20f2 not-used none 18 enp7s20f4 not-used none 19 enp7s20f6 not-used none 20 enp7s21 not-used none 21 enp7s21f2 not-used none 22 enp7s21f4 not-used none 23 enp7s21f6 not-used none 24 enp7s22 not-used none 25 enp7s22f2 not-used none 26 enp7s22f4 not-used none 27 enp7s22f6 not-used Copyright 2018 Avi Networks, Inc. Page 7 of 8

8 none 28 enp7s23 not-used none 29 enp7s23f2 not-used none 30 enp7s23f4 not-used none 31 enp7s23f6 not-used none </pre></li> </ul> <h2 id="reference-and-related-aricles">reference and Related Aricles</h2> <ul> <li><a href=" Channeling on Linux Server Hosts</a></li> <li><a href=" Avi Vantage for CSP 2100</a></li> <li><a href="/ /linux_unix/article.php/ /understanding-nic-bonding-with-linux.htm/">understanding NIC Bonding with Linux</a></li> <li><a href="/ /UbuntuBonding/">Ubuntu Bonding</a></li> </ul> </code> Copyright 2018 Avi Networks, Inc. Page 8 of 8

Port Channel for Cisco Cloud Services Platform (CSP)

Port Channel for Cisco Cloud Services Platform (CSP) Page 1 of 10 Port Channel for Cisco Cloud Services Platform (CSP) 2100 view online To improve available network bandwidth and fault tolerance, multiple virtual function (VF) network interfaces assigned

More information

OpenFlow Configuration Lab

OpenFlow Configuration Lab APNIC SDN Workshop Lab OpenFlow Configuration Lab Objective: As part of this hands-on module, you will be installing the Mininet network emulator on your PC. You will then configure a standalone OpenFlow

More information

interface info bond0 Interface : bond0 Interface Type : Bonding Interface Slave Interfaces : eth2, eth3 climconfig bond0 bond0 bond0 eth4: <BROADCAST,

interface info bond0 Interface : bond0 Interface Type : Bonding Interface Slave Interfaces : eth2, eth3 climconfig bond0 bond0 bond0 eth4: <BROADCAST, interface info bond0 Interface : bond0 Interface Type : Bonding Interface Slave Interfaces : eth2, eth3 climconfig bond0 bond0 bond0 eth4: state DOWN eth5: state

More information

Module 2 OpenFlow Configuration Lab

Module 2 OpenFlow Configuration Lab APNIC SDN Workshop Lab Module 2 OpenFlow Configuration Lab Objective: As part of this hands-on module, you will be installing the Mininet network emulator on your PC. You will then configure a standalone

More information

Docker Networking: From One to Many. Don Mills

Docker Networking: From One to Many. Don Mills Docker Networking: From One to Many Don Mills What we are going to talk about Overview of traditional Docker networking Some demonstrations Questions New Docker features Some more demonstrations Questions

More information

IPv6 in Avi Vantage for OpenStack

IPv6 in Avi Vantage for OpenStack Page 1 of 11 view online Overview Starting with release 18.1.1, OpenStack integration with Avi Vantage is IPv6 capable. The integration discussed in this article has been tested for OpenStack Ocata which

More information

Deep Dive into OpenStack Networking

Deep Dive into OpenStack Networking Deep Dive into OpenStack Networking Damrongsak Reetanon Solutions Architect Red Hat (Thailand) September 22, 2016 Deep Dive into OpenStack Networking Deep Dive into OpenStack

More information

Cisco Cloud Services Platform 2100 REST API Guide. First Published: Last Updated:

Cisco Cloud Services Platform 2100 REST API Guide. First Published: Last Updated: Cisco Cloud Services Platform 2100 REST API Guide First Published: 2015-09-02 Last Updated: 2018-03-30 Cisco Systems, Inc. www.cisco.com 1 Information About the Cisco CSP 2100 REST API Contents Information

More information

Advanced IP Routing. Policy Routing QoS RVSP

Advanced IP Routing. Policy Routing QoS RVSP Advanced IP Routing Policy Routing QoS RVSP Traditional Routing What is traditional routing? Best effort. All routing is a destination driven process. Router cares only about the destination address when

More information

Safari O Reilly CLASS PREPARATION

Safari O Reilly CLASS PREPARATION CLASS PREPARATION Building Distributed Pipelines for Data Science Using Kafka, Spark, and Cassandra Table of contents Environment 1 Prerequisites 1 Import the Virtual Machine 3 If you are stuck in Virtual

More information

Integrate Bullion S Server with FlexPod Converged Infrastructure

Integrate Bullion S Server with FlexPod Converged Infrastructure White Paper Integrate Bullion S Server with FlexPod Converged Infrastructure Technical Considerations August 2017 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page

More information

Quick Start Guide for Vmware. Version 2.5 Vmware vsphere Instance

Quick Start Guide for Vmware. Version 2.5 Vmware vsphere Instance Quick Start Guide for Vmware Version 2.5 Vmware vsphere Instance CONTENTS 1. Introduction 1.1 Running Gemini appliance on Vmware vsphere 1.1.1 Supported Versions 1.1.2 System Requirement 1.1.3 Note on

More information

Rtnetlink dump filtering in the kernel Roopa Prabhu

Rtnetlink dump filtering in the kernel Roopa Prabhu Rtnetlink dump filtering in the kernel Roopa Prabhu Agenda Introduction to kernel rtnetlink dumps Applications using rtnetlink dumps Scalability problems with rtnetlink dumps Better Dump filtering in the

More information

Hardware accelerating Linux network functions Roopa Prabhu, Wilson Kok

Hardware accelerating Linux network functions Roopa Prabhu, Wilson Kok Hardware accelerating Linux network functions Roopa Prabhu, Wilson Kok Agenda Recap: offload models, offload drivers Introduction to switch asic hardware L2 offload to switch ASIC Mac Learning, ageing

More information

Survey of inconsistencies in Linux kernel IPv4/IPv6 UAPI Roopa Prabhu

Survey of inconsistencies in Linux kernel IPv4/IPv6 UAPI Roopa Prabhu Survey of inconsistencies in Linux kernel IPv4/IPv6 UAPI Roopa Prabhu Agenda Goals Introduction to Kernel Netlink UAPI for IPv4/IPv6 Introduction to userspace apps relying on the UAPI Survey areas of inconsistencies

More information

Installation Instructions for Xorcom TwinStar Plus Servers

Installation Instructions for Xorcom TwinStar Plus Servers Document version: 1.0 Overview Installation Instructions for Xorcom TwinStar Plus Servers This document describes the configuration process which must be performed at the customer site for pre-configured

More information

Stand-by server iprotect 8.03

Stand-by server iprotect 8.03 Stand-by server iprotect 8.03 o Functional Description o Implementation Guide lines o Cold- and Warm stand-by o Automatic fail-over Publication May, 2016 Keyprocessor BV Paasheuvelweg 20 1105BJ Amsterdam

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

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

Seccomp, network and namespaces. Francesco Tornieri <francesco.tornieri AT kiratech.it>

Seccomp, network and namespaces. Francesco Tornieri <francesco.tornieri AT kiratech.it> Seccomp, network and namespaces Francesco Tornieri VM vs Container 2 Namespaces ecc 3 Namespaces ecc man namespaces: A namespaces wraps a global system resource in a

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 Cloud Services Platform 2100 Command Reference. First Published: Last Updated:

Cisco Cloud Services Platform 2100 Command Reference. First Published: Last Updated: Cisco Cloud Services Platform 2100 Command Reference First Published: 2015-09-02 Last Updated: 2017-08-11 Cisco Systems, Inc. www.cisco.com 1 Overview Contents Overview... 5 Information About Cisco Cloud

More information

My installation at Maple Park Development Corp.

My installation at Maple Park Development Corp. My installation at Maple Park Development Corp. U-verse ADSL (6 MB) (2) Grandstream HT702 VOIP adaptors (4) Hardwired PCs (or devices) (1) WRT54G (as a hub) 3-6 wireless guests/other @99.26.133.45 (Dynamic)

More information

For personnal use only

For personnal use only Network Namespaces in RHEL7 Finnbarr P. Murphy (fpm@fpmurphy.com) Linux namespaces are somewhat like Solaris zones in many ways from a user perspective but have significant differences under the hood.

More information

The Essentials of Linux Network Administration

The Essentials of Linux Network Administration White Paper by David Davis, ActualTech Media The Essentials of Linux Network Administration In this Paper Understanding Linux Network Interfaces... 2 MAC Addresses... 3 IP Addressing... 3 DHCP... 5 DNS...

More information

Cisco Cloud Services Platform 2100 Command Reference. First Published: Last Updated:

Cisco Cloud Services Platform 2100 Command Reference. First Published: Last Updated: Cisco Cloud Services Platform 2100 Command Reference First Published: 2015-09-02 Last Updated: 2018-03-30 Cisco Systems, Inc. www.cisco.com 1 Overview Contents Overview... 6 Information About Cisco Cloud

More information

LTIB for i.mx28, a step-by-step guide

LTIB for i.mx28, a step-by-step guide LTIB for i.mx28, a step-by-step guide Note: This guide shows how to get a target system building and running on an i.mx28 EVK board. Install LTIB Configure and build First time configuration LTIB configuration

More information

SUSE Linux Enterprise Server 11: Certified Linux Engineer Manual

SUSE Linux Enterprise Server 11: Certified Linux Engineer Manual SUSE Linux Enterprise Server 11: Certified Linux Engineer Manual 3107 Novell Training Services AUTHORIZED COURSEWARE www.novell.com Novell Training Services (en) 15 April 2009 Part # 100-005229-001-REV

More information

Lecture 5. Switching

Lecture 5. Switching TEL3214 Computer Communication Networks Lecture 5 Switching 10.10.10.30/24 (eth0.10) Trunk SW_B VLAN 10 (eth0.20) VLAN 20 CEng, FIEI, FIET, CISSP 20.20.20.30/24 diarmuid@obriain.com Bridging Device used

More information

Displaying Cisco NFVI Node Names and IP Addresses. Complete the following steps to display the Cisco NFVI node names and IP addresses.

Displaying Cisco NFVI Node Names and IP Addresses. Complete the following steps to display the Cisco NFVI node names and IP addresses. Displaying Cisco NFVI Node Names and IP Addresses, on page 1 Verifying Cisco NFVI Node Interface Configurations, on page 2 Displaying Cisco NFVI Node Network Configuration Files, on page 3 Viewing Cisco

More information

Experimenting Internetworking using Linux Virtual Machines Part I

Experimenting Internetworking using Linux Virtual Machines Part I Experimenting Internetworking using Linux Virtual Machines Part I Hui Chen Previous Release on October 27, 2014 Lastly revised on November 4, 2015 Revision: Copyright c 2016. Hui Chen

More information

Enabling vtracker. This chapter contains the following sections:

Enabling vtracker. This chapter contains the following sections: This chapter contains the following sections: Information About vtracker, page 2 Guidelines and Limitations, page 2 Default Settings for vtracker Parameters, page 3 Globally, page 3 Upstream View, page

More information

OpenStack Neutron. Introduction and project status & Use case ML2 plugin with l2 population

OpenStack Neutron. Introduction and project status & Use case ML2 plugin with l2 population OpenStack Neutron Introduction and project status & Use case ML2 plugin with l2 population Summary 1. OpenStack Neutron Why Neutron? What s Neutron? 2. 2014.1 release Please, stabilize it! Features 3.

More information

CMG- EAM-R. Quick-Start Guide. Part No. MSH-EAM- 0004

CMG- EAM-R. Quick-Start Guide. Part No. MSH-EAM- 0004 CMG- EAM-R Quick-Start Guide Part No. MSH-EAM- 0004 Designed and manufactured by Güralp Systems Limited 3 Midas House, Calleva Park Aldermaston RG7 8EA England Proprietary Notice: The information in this

More information

Building High-Performance NFV Solutions Using Containers

Building High-Performance NFV Solutions Using Containers Building High-Performance NFV Solutions Using Containers Jun Nakajima Contributors: Sainath Grandhi, Yunhong Jiang, Krishna Murthy, Guangrong Xiao 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED

More information

Brocade 5600 vrouter LAN Interfaces Configuration Guide

Brocade 5600 vrouter LAN Interfaces Configuration Guide CONFIGURATION GUIDE Brocade 5600 vrouter LAN Interfaces Configuration Guide Supporting Brocade 5600 vrouter 4.2R1 53-1004259-01 16 May 2016 2016, Brocade Communications Systems, Inc. All Rights Reserved.

More information

vnetwork Future Direction Howie Xu, VMware R&D November 4, 2008

vnetwork Future Direction Howie Xu, VMware R&D November 4, 2008 vnetwork Future Direction Howie Xu, VMware R&D November 4, 2008 Virtual Datacenter OS from VMware Infrastructure vservices and Cloud vservices Existing New - roadmap Virtual Datacenter OS from VMware Agenda

More information

Cumulus VX for a POC in pre-sales. Using Cumulus VX to create a virtual POC environment.

Cumulus VX for a POC in pre-sales. Using Cumulus VX to create a virtual POC environment. Cumulus VX for a POC in pre-sales Using Cumulus VX to create a virtual POC environment. Contents Contents Cumulus VX in pre-sales engagement Introduction Cumulus VX in a POC Intended Audience Installation

More information

Infrastructure at your Service. Oracle over Docker. Oracle over Docker

Infrastructure at your Service. Oracle over Docker. Oracle over Docker Infrastructure at your Service. Infrastructure at your Service. About me David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david-.hueber@dbi-services.com www.dbi-services.com Page 2 18.11.2015

More information

Socket (Session) Aware Change of IP SACIP network functionality. Samo Pogačnik

Socket (Session) Aware Change of IP SACIP network functionality. Samo Pogačnik Socket (Session) Aware Change of IP SACIP network functionality Samo Pogačnik Key notes about SACIP On the fly changes of network access point of a (mobile) user / endpoint device Possibility for preserving

More information

Q&A about RHEL on z Systems BCP

Q&A about RHEL on z Systems BCP Filipe Miranda Global Lead for Red Hat Products on IBM z Systems and Power Systems Red Hat Inc. Q&A about RHEL on z Systems BCP 9.0 Topics for this session Red Hat in a nutshell Red

More information

Troubleshooting. Displaying Cisco NFVI Node Names and IP Addresses

Troubleshooting. Displaying Cisco NFVI Node Names and IP Addresses Displaying Cisco NFVI Node Names and IP Addresses, page 1 Verifying Cisco NFVI Node Interface Configurations, page 2 Displaying Cisco NFVI Node Network Configuration Files, page 4 Viewing Cisco NFVI Node

More information

User Guide Infoblox IPAM Driver for Docker. Version 1.1

User Guide Infoblox IPAM Driver for Docker. Version 1.1 User Guide Infoblox IPAM Driver for Docker Version 1.1 Copyright Statements 2017, Infoblox Inc. All rights reserved. The contents of this document may not be copied or duplicated in any form, in whole

More information

Red Hat CloudForms 4.6

Red Hat CloudForms 4.6 Red Hat CloudForms 4.6 High Availability Guide Configuring and managing high availability in a Red Hat CloudForms environment Last Updated: 2018-05-23 Red Hat CloudForms 4.6 High Availability Guide Configuring

More information

TRex Virtual Machine setup and basic usage. TRex Virtual Machine setup and basic usage

TRex Virtual Machine setup and basic usage. TRex Virtual Machine setup and basic usage TRex Virtual Machine setup and basic usage i TRex Virtual Machine setup and basic usage TRex Virtual Machine setup and basic usage ii REVISION HISTORY NUMBER DATE DESCRIPTION NAME TRex Virtual Machine

More information

LPC 2013 PCI Microconference

LPC 2013 PCI Microconference LPC 2013 PCI Microconference SR IOV Virtual Function Lifetimes Discussion of issues around enabling, disabling, and removing Virtual Functions PCIe SR IOV Extended Capability Structure % lspci s02:00.0

More information

Displaying Cisco NFVI Node Names and IP Addresses. Complete the following steps to display the Cisco NFVI node names and IP addresses.

Displaying Cisco NFVI Node Names and IP Addresses. Complete the following steps to display the Cisco NFVI node names and IP addresses. Displaying Cisco NFVI Node Names and IP Addresses, page 1 Verifying Cisco NFVI Node Interface Configurations, page 2 Displaying Cisco NFVI Node Network Configuration Files, page 4 Viewing Cisco NFVI Node

More information

Displaying Cisco NFVI Node Names and IP Addresses. Complete the following steps to display the Cisco NFVI node names and IP addresses.

Displaying Cisco NFVI Node Names and IP Addresses. Complete the following steps to display the Cisco NFVI node names and IP addresses. Displaying Cisco NFVI Node Names and IP Addresses, page 1 Verifying Cisco NFVI Node Interface Configurations, page 2 Displaying Cisco NFVI Node Network Configuration Files, page 3 Viewing Cisco NFVI Node

More information

Red Hat Satellite 6.2

Red Hat Satellite 6.2 Red Hat Satellite 6.2 Provisioning Guide A guide to provisioning physical and virtual hosts on Red Hat Satellite Servers. Edition 1.0 Last Updated: 2018-05-01 Red Hat Satellite 6.2 Provisioning Guide

More information

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 LAB REFERENCE & TOPOLOGY INFORMATION... 3 3 DELETE THE EXISTING OUT OF BAND NODE MANAGEMENT ADDRESSES CONFIGURATION FOR YOUR DESIGNATED ACI FABRIC... 4 4 CONFIGURE

More information

OpenStack Network Configuration for Avi Controller

OpenStack Network Configuration for Avi Controller Page 1 of 5 OpenStack Network Configuration for Avi Controller Cluster view online This article explains how to configure a cluster in Avi Vantage for an OpenStack cloud. To provide Avi Controller high

More information

Kubernetes Love at first sight?

Kubernetes Love at first sight? Kubernetes Love at first sight? 15, February 2018 Joost Hofman (Lead Developer @ Albert Heijn IT Online) Milo van der zee (Senior Developer @Albert Heijn IT Online) Agenda Kubernetes Why at AH? How? Questions

More information

BGP-4 Border Gateway Protocol 4 (BGP-4) Primer

BGP-4 Border Gateway Protocol 4 (BGP-4) Primer BGP-4 Border Gateway Protocol 4 (BGP-4) Primer Diarmuid Ó Briain Last updated: 18 April 2017 2 Routing primer 2017 by C²S Consulting Policies made available under the Creative Commons Attribution-NonCommercial

More information

Advanced Networking Features in Kubernetes* and Container Bare Metal

Advanced Networking Features in Kubernetes* and Container Bare Metal Advanced Networking Features in Kubernetes* and Container Bare Metal Application Note December 2018 Document Number: 606835-001 You may not use or facilitate the use of this document in connection with

More information

RoCE Update. Liran Liss, Mellanox Technologies March,

RoCE Update. Liran Liss, Mellanox Technologies March, RoCE Update Liran Liss, Mellanox Technologies March, 2012 www.openfabrics.org 1 Agenda RoCE Ecosystem QoS Virtualization High availability Latest news 2 RoCE in the Data Center Lossless configuration recommended

More information

vsphere Networking Update 2 VMware vsphere 5.5 VMware ESXi 5.5 vcenter Server 5.5 EN

vsphere Networking Update 2 VMware vsphere 5.5 VMware ESXi 5.5 vcenter Server 5.5 EN Update 2 VMware vsphere 5.5 VMware ESXi 5.5 vcenter Server 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

OpenStack Network Configuration for Avi Controller

OpenStack Network Configuration for Avi Controller Page 1 of 5 OpenStack Network Configuration for Avi Controller Cluster view online This article explains how to configure a cluster in Avi Vantage for an OpenStack cloud. To provide Avi Controller high

More information

Configuring Virtual Ethernet Interfaces

Configuring Virtual Ethernet Interfaces CHAPTER 4 This chapter describes how to configure virtual Ethernet (vethernet or veth) interfaces. This chapter includes the following sections: Information About vethernet Interfaces, page 4-1 Guidelines

More information

installing Linux Paul Cobbaut

installing Linux Paul Cobbaut installing Linux Paul Cobbaut installing Linux Paul Cobbaut lt-2.0 Publication date Wed 12 Nov 2014 03:59:02 PM CET Table of Contents 1. installing Debian 8... 1 1.1. Debian... 2 1.2. Downloading... 2

More information

vsphere Networking Update 1 ESXi 5.1 vcenter Server 5.1 vsphere 5.1 EN

vsphere Networking Update 1 ESXi 5.1 vcenter Server 5.1 vsphere 5.1 EN Update 1 ESXi 5.1 vcenter Server 5.1 vsphere 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check

More information

Using SR-IOV on OpenStack

Using SR-IOV on OpenStack Proceedings of NetDev 1.1: The Technical Conference on Linux Networking (February 10th-12th 2016. Seville, Spain) Using SR-IOV on OpenStack Alexander Duyck www.mirantis.com Agenda Proceedings of NetDev

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

vsphere Networking Update 1 Modified on 04 OCT 2017 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5

vsphere Networking Update 1 Modified on 04 OCT 2017 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5 Update 1 Modified on 04 OCT 2017 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware

More information

Mediant Virtual Edition SBC

Mediant Virtual Edition SBC Installation Manual AudioCodes Mediant Family of Session Border Controllers (SBC) Mediant Virtual Edition SBC Version 7.0 Installation Manual Contents Table of Contents 1 Introduction... 9 1.1 Mediant

More information

vsphere Networking 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7

vsphere Networking 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7 17 APR 2018 VMware vsphere 6.7 VMware ESXi 6.7 vcenter Server 6.7 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

Configuring Gigabit Ethernet Interfaces (J-Web Procedure)

Configuring Gigabit Ethernet Interfaces (J-Web Procedure) Configuring Gigabit Ethernet Interfaces (J-Web Procedure) An Ethernet interface must be configured for optimal performance in a high-traffic network. To configure properties on a Gigabit Ethernet interface

More information

Lecture 07c Routing Border Gateway Protocol

Lecture 07c Routing Border Gateway Protocol BSc in Telecommunications Engineering TEL3214 Computer Communication Networks Lecture 07c Routing Border Gateway Protocol Eng Diarmuid O'Briain, CEng, CISSP 7c-2 TEL3214 - Computer Communication Networks

More information

IPv6 in 60 minutes. aarnet Australia's Academic and Research Network

IPv6 in 60 minutes. aarnet Australia's Academic and Research Network 20 IPv6 in 60 minutes Glen Turner 2011-05-19 Association of Independent Schools NSW ICT Managers' Conference 2011 aarnet Australia's Academic and Research Network IPv6: fix the problems with IPv4 Better

More information

IPv6. IPv6 Rationale. IPv6 (Review) IPv6 (Review) IPv6 Extension Headers. IPv6 Header Chaining PROTOCOL ADDRESSING AUTOCONFIGURATION DEPLOYMENT

IPv6. IPv6 Rationale. IPv6 (Review) IPv6 (Review) IPv6 Extension Headers. IPv6 Header Chaining PROTOCOL ADDRESSING AUTOCONFIGURATION DEPLOYMENT IPv6 PROTOCOL ADDRESSING AUTOCONFIGURATION DEPLOYMENT IPv6 Rationale Larger address space Efficient address allocation Simpler processing Autoconfiguration Support for QoS Support for security IPv4 IPv4

More information

Configuration Maximums. Update 1 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5

Configuration Maximums. Update 1 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5 Configuration s Update 1 VMware vsphere 6.5 VMware ESXi 6.5 vcenter Server 6.5 Configuration s You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

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

Cisco Virtual Infrastructure Manager Installation Guide, 2.2.6

Cisco Virtual Infrastructure Manager Installation Guide, 2.2.6 First Published: 2017-11-30 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 2017

More information

Cisco usnic Deployment Guide for Cisco UCS C-Series Rack-Mount Standalone Servers

Cisco usnic Deployment Guide for Cisco UCS C-Series Rack-Mount Standalone Servers Cisco usnic Deployment Guide for Cisco UCS C-Series Rack-Mount Standalone Servers First Published: 2016-01-20 Last Modified: 2016-09-17 The Cisco user-space NIC (Cisco usnic) feature improves the performance

More information

Installing and Configuring VXLAN Gateway

Installing and Configuring VXLAN Gateway Installing and Configuring VXLAN Gateway This chapter contains the following sections: Information About the VXLAN Gateway Deployment, page 1 Guidelines and Limitations, page 2 Configuring VSMs, page 3

More information

Common Information Modeling for Advanced Virtual Ethernet Switches

Common Information Modeling for Advanced Virtual Ethernet Switches Common Information Modeling for Advanced Virtual Switches John Parchem - Partner Architect, Microsoft Corporation Vice-Chair, SVPC Virtual Networking, DMTF Hemal V. Shah - Associate Technical Director,

More information

Cisco Virtual Update Container networking. Hans Donnerborg, Lars Granberg, Maj 2018

Cisco Virtual Update Container networking. Hans Donnerborg, Lars Granberg, Maj 2018 Cisco Virtual Update Container networking Hans Donnerborg, hdonnerb@cisco.com Lars Granberg, lagranbe@cisco.com Maj 2018 Why ACI for Application Container Platforms Turnkey solution for node and container

More information

LAN Setup Reflection

LAN Setup Reflection LAN Setup Reflection After the LAN setup, ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other

More information

<Insert Picture Here> LDoms Deep Dive IO Best Practices for Oracle VM Server for SPARC

<Insert Picture Here> LDoms Deep Dive IO Best Practices for Oracle VM Server for SPARC LDoms Deep Dive IO Best Practices for Oracle VM Server for SPARC Stefan Hinker EMEA Hardware Principal Sales Consultant The following is intended to outline our general product direction.

More information

Overview to Cisco NFVI

Overview to Cisco NFVI This section contains the following topics: Overview to Cisco NFV Infrastructure, on page 1 Overview to Cisco Virtual Infrastructure Manager, on page 7 Cisco NFVI Networking Overview, on page 12 UCS C-Series

More information

Configuring Link Aggregation on the ML-MR-10 card

Configuring Link Aggregation on the ML-MR-10 card CHAPTER 34 Configuring Link Aggregation on the ML-MR-10 card This chapter applies to the ML-MR-10 card and describes how to configure link aggregation for the ML-Series cards, both EtherChannel and packet-over-sonet/sdh

More information

Virtual switching technologies and Linux bridge

Virtual switching technologies and Linux bridge Virtual switching technologies and Linux bridge Toshiaki Makita NTT Open Source Software Center Today's topics Virtual switching technologies in Linux Software switches (bridges) in Linux Switching technologies

More information

Declare Your Linux Network State!

Declare Your Linux Network State! Declare Your Linux Network State! with nmstate Edward Haas, Red Hat Till Maas, Red Hat Linux kernel Hardware 3 Red Hat ovirt Ifcfg initscripts ethtool Netlink Linux

More information

How to scan DVWA with the Free edition of Burp Suite

How to scan DVWA with the Free edition of Burp Suite How to scan DVWA with the Free edition of Burp Suite Introduction The motivation behind this paper is to have a working reference model for scanning any site with the free edition of Burp Suite. I am using

More information

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external?

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? LAN Setup Reflection Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other VMs in the classroom?

More information

ALOHA LOAD BALANCER ACTIVE-PASSIVE BONDING

ALOHA LOAD BALANCER ACTIVE-PASSIVE BONDING ALOHA LOAD BALANCER ACTIVE-PASSIVE BONDING APPNOTE #0005 CONFIGURING ACTIVE-PASSIVE BONDING This application note is intended to help you configure bonding in order to ensure high availability of your

More information

Configuration Maximums

Configuration Maximums Configuration s vsphere 6.0 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

More information

Red Hat Satellite 6.3

Red Hat Satellite 6.3 Red Hat Satellite 6.3 Provisioning Guide A guide to provisioning physical and virtual hosts on Red Hat Satellite Servers. Edition 1.0 Last Updated: 2018-09-06 Red Hat Satellite 6.3 Provisioning Guide

More information

PCI SR-IOV on FreeBSD. Ryan Stone

PCI SR-IOV on FreeBSD. Ryan Stone PCI SR-IOV on FreeBSD Ryan Stone rstone@freebsd.org Performing I/O from a VM I/O is through (para-)virtualized devices implemented in the hypervisor Additional load on host; less CPU available to guests

More information

FiberstoreOS IP Service Configuration Guide

FiberstoreOS IP Service Configuration Guide FiberstoreOS IP Service Configuration Guide Contents 1 Configuring ARP...4 1.1 Overview...4 1.2 Configuring ARP... 4 1.3 Validation commands...5 2 Configuring Proxy ARP... 7 2.1 Overview...7 2.2 Configuring

More information

Setting Up a Service VM as an IPv6 vrouter

Setting Up a Service VM as an IPv6 vrouter Setting Up a Service VM as an IPv6 vrouter Release draft (7c6658f) OPNFV August 22, 2016 CONTENTS 1 Architectural Design 3 2 Scenario 1 - Native OpenStack Environment 5 2.1 Prerequisite................................................

More information

QuickSpecs. HP Z 10GbE Dual Port Module. Models

QuickSpecs. HP Z 10GbE Dual Port Module. Models Overview Models Part Number: 1Ql49AA Introduction The is a 10GBASE-T adapter utilizing the Intel X722 MAC and X557-AT2 PHY pairing to deliver full line-rate performance, utilizing CAT 6A UTP cabling (or

More information

Configuring EtherChannels

Configuring EtherChannels 27 CHAPTER This chapter describes how to configure EtherChannel on Layer 2 interfaces. EtherChannel provides fault-tolerant high-speed links between switches, routers, and servers. You can use it to increase

More information

}w!"#$%&'()+,-./012345<ya

}w!#$%&'()+,-./012345<ya MASARYKOVA UNIVERZITA FAKULTA INFORMATIKY }w!"#$%&'()+,-./012345

More information

IBM Spectrum NAS Version Network Guide IBM SC

IBM Spectrum NAS Version Network Guide IBM SC IBM Spectrum NAS Version 1.7.0.0 Network Guide IBM SC27-9231-00 IBM Spectrum NAS is a Software-defined storage solution that provides file storage and offers an active/active storage solution to the end

More information

How to perform a security assessment with Paros Proxy using Kali Linux

How to perform a security assessment with Paros Proxy using Kali Linux How to perform a security assessment with Paros Proxy using Kali Linux Introduction Paros Proxy is a security and vulnerability testing tool. Paros can be used to spider/crawl an entire site (URL), and

More information

How to scan DVWA with Kali Sparta

How to scan DVWA with Kali Sparta How to scan DVWA with Kali Sparta Introduction The motivation for this paper is to show the user how to quickly get Sparta operational and scanning the DVWA running on a local instance. SPARTA is a python

More information

Mediant Virtual Edition (VE) SBC

Mediant Virtual Edition (VE) SBC Installation Manual AudioCodes Mediant Family of Session Border Controllers (SBC) Mediant Virtual Edition (VE) SBC Version 7.2 Installation Manual Contents Table of Contents 1 Introduction... 9 1.1 Mediant

More information

Configuring EtherChannels and Link-State Tracking

Configuring EtherChannels and Link-State Tracking 30 CHAPTER Configuring EtherChannels and Link-State Tracking This chapter describes how to configure EtherChannels on Layer 2 ports on the Catalyst 2960 switch. EtherChannel provides fault-tolerant high-speed

More information

Configuring MST Using Cisco NX-OS

Configuring MST Using Cisco NX-OS This chapter describes how to configure Multiple Spanning Tree (MST) on Cisco NX-OS devices. This chapter includes the following sections: Finding Feature Information, page 1 Information About MST, page

More information

OpenSwitch OPX Configuration Guide. Release 2.1.0

OpenSwitch OPX Configuration Guide. Release 2.1.0 OpenSwitch OPX Configuration Guide Release 2.1.0 2017-7 Rev. A02 Contents 1 Network configuration...4 2 Interfaces... 5 Physical ports... 6 Fan-out interfaces...6 Port-channel/bond interfaces... 7 VLAN

More information