Managing the Management Switches. Erik Ruiter SURFsara Cumulus Meetup Amsterdam 2017

Size: px
Start display at page:

Download "Managing the Management Switches. Erik Ruiter SURFsara Cumulus Meetup Amsterdam 2017"

Transcription

1 Managing the Management Switches Erik Ruiter SURFsara Cumulus Meetup Amsterdam 2017

2 Outline 1. Old vs new Situation 2. Used technologies (Ansible / Cumulus) 3. Ansible Examples 4. Results / Whats next? 5. Short demo (if time left )

3 Background (High-Level Design SURFsara network) SURFsara provides many services, for instance: - Super computing (Cartesius) - HPC cloud - Hadoop - GRID computing / storage All services are operated as clusters, and are accessible for personnel through a management network. This is used for: - Steppingstone LAN - DRAC / IPMI access - Backup traffic - Server monitoring Routing is done using Firewall

4 Previous management network Left-over switches from 1 to 10G upgrades in the past Unsupported switches: up to 10 years old Hand-maintained, vendor proprietary CLI Arista Brocade (and also Foundry) Cisco (7 different models) Dell (8 different models) Juniper Nortel (unmanaged) Supermicro (unmanaged)

5 Desired management network Physical requirements: - Low(er) power switches - Redundant, swappable power supply and fans - Back-to-front airflow Core (Fiber) mgmt switch 1 HUB A 2Gbps LACP 1G-BASE-T 20Gbps 20Gbps MLAG / VC 10GBASE-SR MM-fiber HUB B 2Gbps LACP 1G-BASE-T Core (Fiber) mgmt switch 2 Operational requirements: - Standard CLI for all switches - Automated configuration management / ZTP - Mostly layer 2 requirements 20Gbps LACP 10GBASE-SR MM-fiber Core (UTP) mgmt switch 3 Core (UTP) mgmt switch 4 20Gbps LACP 10GBASE-SR MM-fiber NW-MGMT NW-MGMT EoR Console server 1G-BASE-T ToR switch EoR switch 1G-BASE-T 1G-BASE-T 1G-BASE-T EoR switch ToR switch EoR Console server ToR switch ToR switch CONSOLE RJ45 RS232 MGMT VLANS VLAN 800 SURFSARA-NW-MGMT SERIAL RS232 CONSOLE CONSOLE RJ45 RS232

6 Resulting management network Tender for 78 switches, February April 2016, Won by Dell Core switches: Top of Rack and End of Row switches: Console servers for OOB support: Dell S4048-ON Dell S3048-ON Opengear CM7148 Core switches configured as an MLAG pair EoR switches connected to cores using LACP (10 Gbps optical) ToR switches connected to EoR using single uplink (1 Gbps UTP) Bare Metal ( white label ) switches using the ONIE boot loader All switches running Cumulus Linux as networking OS

7 Bare Metal ( White Label ) Switches Decoupling of network operating system and hardware Similar to the rise of Linux and Windows with the IBM compatible PC Driven by cheap top-of-rack switches in big datacentres (eg Facebook Wedge / Backpack) Bootloader: ONIE Hardware: Dell, Edge-core (Accton), Quanta, Penguin, Mellanox, Software: Cumulus Linux, Big Switch, PicOS (Pica8), Pluribus, Dell OS 10, Microsoft SONiC, etc Freedom of Choice! Network Processors Broadcom Apollo2 Broadcom Firebolt3 Broadcom Helix4 Broadcom Tomahawk Broadcom Trident Broadcom Trident/+/2/2+ Broadcom Triumph2 Mellanox Spectrum Cavium

8 Cumulus Linux Linux on a switch No more vendor proprietary CLI Install your own software when desired Manageable using many configuration management systems Makes use of switchd kernel driver for communicating with Broadcom ASIC SURFsara already gained experience using Cumulus in some previous projects

9 Port configuration Cumulus vs Cisco NOTE: in version 3.2 a CLI is introduced

10 Network management approach Original Plan: Network Controller Considered different network controllers, Not what we hoped for: No / Limited northbound authentication, Poor vendor abstraction We only require a simple northbound interface, no device state required, just pull status and push config. No intelligent decisions required (eg traffic engineering) Network controllers can be difficult to learn and manage SPOF or complex redundant installation NCS Still times can change, we still need to keep track of these to monitor improvements.

11 Managing the management switches Our approach: Configuration management Built in python -> Flexible / extendible No agent required on switch/server Support for multiple vendors (including Juniper, Cisco and Arista) Templating using YAML Playbooks -> Plays -> Roles -> Tasks

12 Zero Touch Provisioning Is used for provisioning a switch without any user interaction. Switch is racked, connected to network mgmt VLAN and turned on DHCP server provides IP address for management interface ONIE boot loader downloads required firmware from HTTP server (using URL from DHCP option) ZTP script removes default login credentials, creates NOC user, and adds authorized_keys From here on Ansible takes over switch configuration using playbook and predefined variables Physical racking DHCP ONIE installation Config using Ansible

13 Implemented roles cl-users: Creates users and adds sshkeys cl-common Sets common settings: DNS resolvers, NTP server, Timezone and hostname cl-license Sets and activates Cumulus licence cl-apt Set apt repositories and set location of apt-proxy cl-ldap_auth Sets up LDAP authentication for non-local users (not in use at the moment) cl_snmp Sets up SNMP configuration and starts daemon cl-rsyslog Sets up syslogging and starts daemon cl-interface Sets up switch interfaces (VLAN aware bridge,vlan tagging, LACP, MLAG, routed interfaces) Cumulus also provides similar roles, in their Ansible Galaxy repository

14 Inventory and Variables Inventory: - Contains host and group information for Ansible managed servers/switches - SURFsara uses a dynamic inventory, making use of own in house developed Inventory database (CMT). - This avoids having a to keep a separate administration for Ansible hosts. Group variables file: - A single file which contains all variables that are the same for all switches in a Ansible group - NTP settings - DNS settings, - SNMP - Syslog settings - etc Host variables file - A file per switch, containing the variables that are unique per switch - Mgmt ip address - Port settings (VLAN tagging / MTU / port description) - MLAG / LACP settings

15 Performing changes on network Scenario: Icinga has a new IP adress, ip address of SNMP querier needs to be changed on all switches: 1. Adjust global variables file 2. Commit in GIT 3. Pull new config 4 Execute ansible playbook #ansible-playbook mgmt/provisioning.yml -tags snmp Measured execution time: 2 minutes for 70 switches (how much time does this take for 70 individually managed switches from 7 different vendors?)

16 Example role: SNMP (in too much detail) Tasks (YAML) Templates (Jinja) Variables (YAML) Result

17 Results/ Lessons learnt Positives: - Freedom of choosing own OS - Standardized network (big improvement from pile of old switches) - Configuration management using Ansible is powerful - Cheaper switches, built for datacenter environment Keep in Mind: - Network engineers require some additional skills. (Linux / Cumulus / Ansible / Git) - Different way of working, pushing configs in stead of configuring switches - Configuration management using Ansible is powerful (again!) - Support contract is important; Who is responsible? (Dell or Cumulus?)

18 Whats next Short term: Implement Lesser steps for making changes (no more manual git commands) Exposing Ansible using API (poor mans Ansible Tower / Semaphore) Implement additional roles for routing (quagga) and ACLs (iptables) Longer term (wish list) Build GUI (+ Authorization) for delegating small network changes to end-users -> e.g. change VLAN tag on single port Explore possibilities for using Ansible on production routers and switches (mostly Juniper equipment) (using NAPALM?) Standardize configuration abstraction using YAML or possibly OpenConfig for multiple vendors Add automated provisioning for Cacti and Icinga

19 Erik Ruiter

20 Network topology 20Gbps MLAG sw-lab-c04-1 sw-lab-h04-1 LACP 20Gbps MLAG sw-lab-c04-2 sw-lab-h04-2

IPv6 Capability of Whitebox Networking. Jeremy

IPv6 Capability of Whitebox Networking. Jeremy IPv6 Capability of Whitebox Networking Jeremy Duncan jduncan@tachyondynamics.com @TachyonDynamics Overview What is Whitebox Networking Pros/Cons The hardware The software The IPv6 Capability and the SDN

More information

Datacenter Network Innovation. Freek Dijkstra, SURFsara Colloquium UvA SNE 15 November 2017

Datacenter Network Innovation. Freek Dijkstra, SURFsara Colloquium UvA SNE 15 November 2017 Datacenter Network Innovation Freek Dijkstra, SURFsara Colloquium UvA SNE 15 November 2017 Outline 1. 2. 3. 4. 5. 6. Cabling Also: TCP Performance OpenCompute Clos Network Bare Metal Switches Network Function

More information

Networking Terminology Cheat Sheet

Networking Terminology Cheat Sheet Networking Cheat Sheet YOUR REFERENCE SHEET FOR GOING WEB-SCALE WITH CUMULUS LINUX With Cumulus Linux, you can build a web-scale data center with all the scalability, efficiency and automation available

More information

Building physical clouds

Building physical clouds Building physical clouds Christian "kiko" Reis David Duffey Luke Williams OCP Tech Day August 30th, Menlo Park, CA Preamble How VMware killed hardware Time from request to prompt VM Metal Request Procure

More information

OCP Networking Workshop. SAI-Switch Abstraction Interface SONiC Software for Open Networking in the Cloud

OCP Networking Workshop. SAI-Switch Abstraction Interface SONiC Software for Open Networking in the Cloud OCP Networking Workshop SAI-Switch Abstraction Interface SONiC Software for Open Networking in the Cloud One Investment to Unblock Hardware Innovation Monitoring, Management, Deployment Tools, Cutting

More information

End-to-end fabric visibility

End-to-end fabric visibility End-to-end fabric visibility Bringing web-scale networking September 21 th, 2017 Attilla de Groot SE, HCIE #3494 1 Cumulus Linux architecture Uniform operating model write any tools, use any apps User

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

deploying high capacity IP fabrics

deploying high capacity IP fabrics deploying high capacity IP fabrics Thesis.. How can I build a network of 100 switches in 5 minutes? October 3, 2013 2 High Capacity IP Fabric October 3, 2013 3 Bringing the Linux revolution to Networking!

More information

CPNR: Cisco Prime Network Registrar Administration and Operations

CPNR: Cisco Prime Network Registrar Administration and Operations Prerequisites The recommended knowledge and skills that a learner must have before attending this course are as follows: Knowledge level equivalent to Cisco CCNA Routing & Switching certification Basic

More information

Network Automation at Oracle+Dyn NANOG on the Road Boston, 14 Sept 2017

Network Automation at Oracle+Dyn NANOG on the Road Boston, 14 Sept 2017 Network Automation at Oracle+Dyn NANOG on the Road Boston, 14 Sept 2017 Carlos Vicente We ve come a long way January 2014: 18 sites and a few hundred devices with configurations manually crafted for years

More information

January 28 29, 2014San Jose. Engineering Workshop

January 28 29, 2014San Jose. Engineering Workshop January 28 29, 2014San Jose Open Network Linux A Common Linux Platform for OCP Switches Rob Sherwood Big Switch Networks CTO Outline Proposed in November OCP workshop Goal: Common community target à faster

More information

OPEN NETWORKING REVOLUTION. Aftab Siddiqui Internet Society Technical Engagement Manager - Asia Pacific

OPEN NETWORKING REVOLUTION. Aftab Siddiqui Internet Society Technical Engagement Manager - Asia Pacific OPEN NETWORKING REVOLUTION Aftab Siddiqui Internet Society Technical Engagement Manager - Asia Pacific siddiqui@isoc.org Open Compute Project OCP is a collabora-ve and community focused ini-a-ve on redesigning

More information

Baremetal with Apache CloudStack

Baremetal with Apache CloudStack Baremetal with Apache CloudStack ApacheCon Europe 2016 Jaydeep Marfatia Cloud, IOT and Analytics Me Director of Product Management Cloud Products Accelerite Background Project lead for open source project

More information

Automated Out-of-Band management with Ansible and Redfish

Automated Out-of-Band management with Ansible and Redfish Automated Out-of-Band management with Ansible and Redfish Jose Delarosa Senior Linux Engineer at Dell EMC Jake Jackson Product Field Engineer at Ansible by Red Hat May 2 nd, 2017 Who are we Jose De la

More information

Network Automation using modern tech. Egor Krivosheev 2degrees

Network Automation using modern tech. Egor Krivosheev 2degrees Network Automation using modern tech Egor Krivosheev 2degrees Key parts of network automation today Streaming Telemetry APIs SNMP and screen scraping are still around NETCONF RFC6241 XML encoding Most

More information

Network configuration management at CERN

Network configuration management at CERN Arkadiy Shevrikuko Stefan Stancu Network configuration management at CERN 10/8/2018 1 Outline Network overview Current solution: cfmgr Overview of open-source platforms Evolution plan 10/8/2018 2 Network

More information

Optics in Open Networks

Optics in Open Networks Optics in Open Networks NANOG 72 Atlanta, February 2018 Christian Urricariet Finisar Finisar Corporation 1 Agenda How can optical transceivers be managed in an open networking environment? Open standards

More information

Junos Platform Automation (JAUT)

Junos Platform Automation (JAUT) Junos Platform Automation (JAUT) Course No: EDU-JUN-JAUT Length: 5 Days Schedule and Registration Course Overview This five-day course provides students with Junos platform automation knowledge through

More information

Redfish: The next generation of server management automation

Redfish: The next generation of server management automation Redfish: The next generation of server management automation Paul Rubin Senior Product Manager Embedded Management Automation Dell EMC Systems Management Marketing Agenda Systems Management automation

More information

PICA8 Intro. Copyright 2015 Pica8 Inc. All Rights Reserved.

PICA8 Intro. Copyright 2015 Pica8 Inc. All Rights Reserved. PICA8 Intro pica8.com sales@pica8.com @pica8 Copyright 2015 Pica8 Inc. All Rights Reserved. Pica8 for Network Monitoring Fabrics The Leader in White Box SDN for Monitoring Networks ORCHESTRATION AUTOMATION

More information

Oslo 30 October 2018

Oslo 30 October 2018 Oslo 30 October 2018 Simplify Your Server Lifecycle Management Take advantage of Dell EMC OpenManage Systems Management Kjell Ove Tenold Senior Systems Engineer @ Dell EMC Why do I care about systems management?

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

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Module 1: Google Cloud Platform Projects Identify project resources and quotas Explain the purpose of Google Cloud Resource

More information

MS425 SERIES. 40G fiber aggregation switches designed for large enterprise and campus networks. Datasheet MS425 Series

MS425 SERIES. 40G fiber aggregation switches designed for large enterprise and campus networks. Datasheet MS425 Series Datasheet MS425 Series MS425 SERIES 40G fiber aggregation switches designed for large enterprise and campus networks AGGREGATION SWITCHING WITH MERAKI The Cisco Meraki 425 series extends cloud management

More information

NephOS. A Single Turn-key Solution for Public, Private, and Hybrid Clouds

NephOS. A Single Turn-key Solution for Public, Private, and Hybrid Clouds NephOS A Single Turn-key Solution for Public, Private, and Hybrid Clouds What is NephOS? NephoScale NephOS is a turn-key OpenStack-based service-provider-grade cloud software suite designed for multi-tenancy.

More information

COMPLETE AGENT-FREE MANAGEMENT OF POWEREDGE SERVERS

COMPLETE AGENT-FREE MANAGEMENT OF POWEREDGE SERVERS THE INTEGRATED DELL REMOTE ACCESS CONTROLLER 9 (IDRAC9) WITH LIFECYCLE CONTROLLER COMPLETE AGENT-FREE MANAGEMENT OF POWEREDGE SERVERS Dell idrac9 provides security and intelligent automation. Modernize

More information

Implementing Multi-Chassis Link Aggregation Groups (MC-LAG)

Implementing Multi-Chassis Link Aggregation Groups (MC-LAG) Implementing Multi-Chassis Link Aggregation Groups (MC-LAG) HPE Synergy Virtual Connect SE 40Gb F8 Module and Arista 7050 Series Switches Technical white paper Technical white paper Contents Introduction...

More information

Transforming Networks to All-IT Network with OCP and Open Networking

Transforming Networks to All-IT Network with OCP and Open Networking Transforming Networks to All-IT Network with OCP and Open Networking Junho Suh Manager @SKT Content All-IT Network Building All-IT Network with OCP Powered Networking Porting Indigo on Wedge + Open Network

More information

Be smart. Think open source.

Be smart. Think open source. Foreman Basics Be smart. Think open source. Foreman - Basics Lifecycle management of physical and virtual machines made easy! Agenda Introduction to Foreman Architecture Setup Provisioning Configuration

More information

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Deployment Automation Architecture Guide for VMware NFV 3.0 with VMware Integrated OpenStack 5.0 with Kubernetes Dell Engineering

More information

Trellis Introduction. Saurav Das, Charles Chan & Jono Hart. with contributions from many more. CORD Build 2017, San Jose January 14, 2018

Trellis Introduction. Saurav Das, Charles Chan & Jono Hart. with contributions from many more. CORD Build 2017, San Jose January 14, 2018 Trellis Introduction aurav Das, Charles Chan & Jono Hart with contributions from many more CORD uild 2017, an Jose January 14, 2018 Outline What is Trellis? Why Trellis? Trellis Roadmap Open ource oftware

More information

Building Scaleable Cloud Infrastructure using the Red Hat OpenStack Platform

Building Scaleable Cloud Infrastructure using the Red Hat OpenStack Platform Building Scaleable Cloud Infrastructure using the Red Hat OpenStack Platform Will Foster Sr. Systems Engineer, Red Hat Dan Radez Sr. Software Engineer, Red Hat Kambiz Aghaiepour Principal Software Engineer,

More information

Lenovo ThinkSystem NE Release Notes. For Lenovo Cloud Network Operating System 10.6

Lenovo ThinkSystem NE Release Notes. For Lenovo Cloud Network Operating System 10.6 Lenovo ThinkSystem NE10032 Release Notes For Lenovo Cloud Network Operating System 10.6 Note: Before using this information and the product it supports, read the general information in the Safety information

More information

NephOS. A Single Turn-key Solution for Public, Private, and Hybrid Clouds

NephOS. A Single Turn-key Solution for Public, Private, and Hybrid Clouds NephOS A Single Turn-key Solution for Public, Private, and Hybrid Clouds What is NephOS? NephoScale NephOS is a turn-key OpenStack-based service-provider-grade cloud software suite designed for multi-tenancy.

More information

OS10 Virtualization Guide. Enterprise Edition

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

More information

Side-by-side comparison of the features of Dell EMC idrac9 and idrac8

Side-by-side comparison of the features of Dell EMC idrac9 and idrac8 Side-by-side comparison of the features of Dell EMC and This Dell EMC technical brief compares the features and functionalities of the 14 th generation versus the 13 th generation. Dell OpenManage Product

More information

VMware vsphere 6.5/6.0 Ultimate Bootcamp

VMware vsphere 6.5/6.0 Ultimate Bootcamp VMware vsphere 6.5/6.0 Ultimate Bootcamp Class Duration 5 Days Introduction This fast paced, high energy, hands-on course provides not only the foundation needed for a top performing software defined datacenter

More information

Stratum Project. Enabling era of next generation of SDN

Stratum Project. Enabling era of next generation of SDN Stratum Project Enabling era of next generation of SDN Next-Generation SDN A set of next generation interfaces Announcements Leverages P4, P4Runtime, OpenConfig, gnmi, gnoi Provides full lifecycle management

More information

Open Networking Hardware and Software Steven Noble / Big Switch Networks

Open Networking Hardware and Software Steven Noble / Big Switch Networks Open Networking Hardware and Software Steven Noble / Big Switch Networks @sonoble What is Open Networking? Open Networking includes: Open Networking Hardware (Switches) Dell ON Series, HPE Altoline (Brite-Box)

More information

Automating Cloud Networking with RedHat OpenStack

Automating Cloud Networking with RedHat OpenStack Automating Cloud Networking with RedHat OpenStack Madhu Kashyap Sr. Product Mgr, OpenStack & SDN 2015 BROCADE COMMUNICATIONS SYSTEMS, INC. INTERNAL USE ONLY The New IP The Foundation for the Digital Business

More information

About Chassis Manager

About Chassis Manager CHAPTER 1 Chassis Manager runs directly on your Server Switch to perform administration tasks. This chapter discusses the various components of the interface. Chassis Manager runs on all Server Switches.

More information

Installing vrealize Network Insight

Installing vrealize Network Insight vrealize Network Insight 3.4 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

Gigabit Managed Ethernet Switch

Gigabit Managed Ethernet Switch LGB1110A LGB1126A-R2 Product Data Sheet Gigabit Managed Ethernet Switch Features Overview LGB1110A The Gigabit Managed Ethernet Switches offer L2 features plus advanced L3 features such as Static Route

More information

Cisco Meraki MS400 Series Cloud-Managed Aggregation Switches

Cisco Meraki MS400 Series Cloud-Managed Aggregation Switches Datasheet MS400 Series Cisco Meraki MS400 Series Cloud-Managed Aggregation Switches OVERVIEW The Cisco Meraki MS400 Series brings powerful cloud-managed switching to the aggregation layer. This range of

More information

ForeScout CounterACT. Single CounterACT Appliance. Quick Installation Guide. Version 8.0

ForeScout CounterACT. Single CounterACT Appliance. Quick Installation Guide. Version 8.0 ForeScout CounterACT Single CounterACT Appliance Version 8.0 Table of Contents Welcome to CounterACT Version 8.0... 4 CounterACT Package Contents... 4 Overview... 5 1. Create a Deployment Plan... 6 Decide

More information

Automating, Securing, and Managing Cox Automotive's (AutoTrader) Big Data Infrastructure

Automating, Securing, and Managing Cox Automotive's (AutoTrader) Big Data Infrastructure Automating, Securing, and Managing Cox Automotive's (AutoTrader) Big Data Infrastructure with Ansible, Insights, and Satellite Abdi Hersi, Senior Linux Engineer Cox Automotive Will Nix, Principal Technical

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 642-999 Title : Implementing Cisco Data Center Unified Computing Vendor : Cisco Version : DEMO Get Latest

More information

Overview. ACE Appliance Device Manager Overview CHAPTER

Overview. ACE Appliance Device Manager Overview CHAPTER 1 CHAPTER This section contains the following: ACE Appliance Device Manager, page 1-1 Logging Into ACE Appliance Device Manager, page 1-3 Changing Your Account Password, page 1-4 ACE Appliance Device Manager

More information

Introduction to Stacki. Greg Bruno, PhD VP Engineering, StackIQ

Introduction to Stacki. Greg Bruno, PhD VP Engineering, StackIQ Introduction to Stacki Greg Bruno, PhD VP Engineering, StackIQ Open Source Stack Installer Stacki is a very fast and ultra reliable Linux server provisioning tool at scale. With zero prerequisites for

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

Arista Networks A New Era of Networking. Chris Bowles Consolidate IT

Arista Networks A New Era of Networking. Chris Bowles Consolidate IT Arista Networks A New Era of Networking Chris Bowles Consolidate IT chris.bowles@consolidate-it.eu +44 7796 947281 Today s Networks: Designed for Email Connectivity 2 Agenda Arista Overview Market Overview

More information

Cisco Virtual Networking Solution for OpenStack

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

More information

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

Weiterentwicklung von OpenStack Netzen 25G/50G/100G, FW-Integration, umfassende Einbindung. Alexei Agueev, Systems Engineer

Weiterentwicklung von OpenStack Netzen 25G/50G/100G, FW-Integration, umfassende Einbindung. Alexei Agueev, Systems Engineer Weiterentwicklung von OpenStack Netzen 25G/50G/100G, FW-Integration, umfassende Einbindung Alexei Agueev, Systems Engineer ETHERNET MIGRATION 10G/40G à 25G/50G/100G Interface Parallelism Parallelism increases

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.1.0 Table of Contents About this Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

NEXT GENERATION SOLUTION FOR NETWORK ACCESS MANAGEMNT & CONTROL

NEXT GENERATION SOLUTION FOR NETWORK ACCESS MANAGEMNT & CONTROL PORTNOX PLATFORM NEXT GENERATION SOLUTION FOR NETWORK ACCESS MANAGEMNT & CONTROL Portnox s Network Access Control Platform traverses across all network layers, whether physical, virtual or in the cloud

More information

Release Notes for Cisco UCS Platform Emulator, Release 3.1(1ePE1)

Release Notes for Cisco UCS Platform Emulator, Release 3.1(1ePE1) Release Notes for Cisco UCS Platform Emulator, Release 3.1(1ePE1) First Published: April 12, 2016 Current Release: 3.1(1ePE1) This document describes system requirements, new features, images information,

More information

Demo Lab Guide OS 9 Emulator

Demo Lab Guide OS 9 Emulator Demo Lab Guide OS 9 Emulator Quick Start Guide Example OSPF Configuration Product Domain: Networking Author: Ruairi Mongan Version: 1.01 Date: 01/01/2016 Table of Contents 1 Product Overview... 3 1.1 Lab

More information

Port Usage Information for the IM and Presence Service

Port Usage Information for the IM and Presence Service Port Usage Information for the Service Service Port Usage Overview, on page 1 Information Collated in Table, on page 1 Service Port List, on page 2 Service Port Usage Overview This document provides a

More information

SUN CUSTOMER READY HPC CLUSTER: REFERENCE CONFIGURATIONS WITH SUN FIRE X4100, X4200, AND X4600 SERVERS Jeff Lu, Systems Group Sun BluePrints OnLine

SUN CUSTOMER READY HPC CLUSTER: REFERENCE CONFIGURATIONS WITH SUN FIRE X4100, X4200, AND X4600 SERVERS Jeff Lu, Systems Group Sun BluePrints OnLine SUN CUSTOMER READY HPC CLUSTER: REFERENCE CONFIGURATIONS WITH SUN FIRE X4100, X4200, AND X4600 SERVERS Jeff Lu, Systems Group Sun BluePrints OnLine April 2007 Part No 820-1270-11 Revision 1.1, 4/18/07

More information

OpenSwitch Introduction to Architecture and Development Diego Dompe, Michael Zayats

OpenSwitch Introduction to Architecture and Development Diego Dompe, Michael Zayats OpenSwitch Introduction to Architecture and Development Diego Dompe, Michael Zayats Agenda OpenSwitch Project motivation and goals Open Community Enablement Design Principles Architecture Status Getting

More information

Forescout. Quick Installation Guide. Single Appliance. Version 8.1

Forescout. Quick Installation Guide. Single Appliance. Version 8.1 Forescout Version 8.1 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

LENS Server Maintenance Guide JZ 2017/07/28

LENS Server Maintenance Guide JZ 2017/07/28 LENS Server Maintenance Guide JZ 2017/07/28 Duty Maintain LENS server with minimum downtime Patch critical vulnerabilities Assist LAB member for using the LENS services Evaluate for custom requirements

More information

Installing vrealize Network Insight. VMware vrealize Network Insight 3.3

Installing vrealize Network Insight. VMware vrealize Network Insight 3.3 VMware vrealize Network Insight 3.3 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also provides the latest product updates.

More information

Your partner for Success. CCIE Security v5 Lab Access Guide

Your partner for Success. CCIE Security v5 Lab Access Guide Your partner for Success CCIE Security v5 Lab Access Guide Version 1.9 Author: Cloudmylab Support Contents Introduction... 4 Audience... 4 Disclaimer... 4 Legal Liability... 4 Topology... 4 Devices Used...

More information

UCS-E160DP Double-wide E-Series Server, 6 core CPU, with PCIe

UCS-E160DP Double-wide E-Series Server, 6 core CPU, with PCIe Overview This chapter includes the following sections: Cisco UCS E-Series Servers Overview, page 1 Server Software, page 2 CIMC Overview, page 3 CIMC GUI, page 3 Cisco UCS E-Series Servers Overview The

More information

vrealize Network Insight Installation Guide

vrealize Network Insight Installation Guide vrealize Network Insight Installation Guide vrealize Network Insight 3.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Peplink SD Switch User Manual. Published on October 25th, 2018

Peplink SD Switch User Manual. Published on October 25th, 2018 Peplink SD Switch User Manual Published on October 25th, 2018 1 Table of Contents Switch Layout 4 Specifications 5 Hardware Overview 6 Quick Start Functions 7 Reset Switch 7 Connect Ethernet 7 Connect

More information

Installing vrealize Network Insight. VMware vrealize Network Insight 3.5

Installing vrealize Network Insight. VMware vrealize Network Insight 3.5 VMware vrealize Network Insight 3.5 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also provides the latest product updates.

More information

My network deploys. How about yours? EOS APIs. Andrei Dvornic

My network deploys. How about yours? EOS APIs. Andrei Dvornic My network deploys itself How about yours? EOS APIs Andrei Dvornic andrei@arista.com 1 EOS fundamentals Standard Linux kernel Unique multi-process state sharing architecture that separates networking state

More information

Cisco Network Plug and Play Agent Configuration Guide, Cisco IOS XE Everest b

Cisco Network Plug and Play Agent Configuration Guide, Cisco IOS XE Everest b Cisco Network Plug and Play Agent Configuration Guide, Cisco IOS XE Everest 16.5.1b Feature Information for Cisco Network Plug and Play Agent 2 Finding Feature Information 3 Prerequisites for Cisco Network

More information

Apstra Operating System AOS

Apstra Operating System AOS Apstra Operating System AOS 2.3 CHALLENGES Network admins manually track and verify thousands of elements, even for a small spineleaf networks with a handful of devices. SOLUTION Apstra AOS A turn-key

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

Networking Software. ONIE Project Update. Alex Doyle Build Engineer Cumulus Networks

Networking Software. ONIE Project Update. Alex Doyle Build Engineer Cumulus Networks Networking ONIE Project Update Alex Doyle Build Engineer Cumulus Networks ONIE Update: TL;DL Version New project lead - Alex Doyle. Things are running fine. Look for some enhanced build tools this year.

More information

Gigabit Managed Ethernet Switch

Gigabit Managed Ethernet Switch LGB1110A LGB1152A Product Data Sheet Gigabit Managed Ethernet Switch LGB1110A OVERVIEW The Gigabit Managed Ethernet Switches offer L2 features plus advanced L3 features such as Static Route for Enterprise

More information

Gigabit Managed Ethernet Switch

Gigabit Managed Ethernet Switch LGB1110A LGB1126A-R2 LGB1152A Product Data Sheet Gigabit Managed Ethernet Switch FEATURES L2+ features make the switch easy to manage, provide robust security, and QoS. Offers a built-in device management

More information

45 10.C. 1 The switch should have The switch should have G SFP+ Ports from Day1, populated with all

45 10.C. 1 The switch should have The switch should have G SFP+ Ports from Day1, populated with all Addendum / Corrigendum Dated 29/09/2017 Tender Ref No. - 236/387/DCCS/2010/IREDA/1 Dated: 22/09/2017 Name of Project - Supply Installation and Support Services of Data centers S. No. Document Reference

More information

Best Practice Deployment of F5 App Services in Private Clouds. Henry Tam, Senior Product Marketing Manager John Gruber, Sr. PM Solutions Architect

Best Practice Deployment of F5 App Services in Private Clouds. Henry Tam, Senior Product Marketing Manager John Gruber, Sr. PM Solutions Architect Best Practice Deployment of F5 App Services in Private Clouds Henry Tam, Senior Product Marketing Manager John Gruber, Sr. PM Solutions Architect Agenda 1 2 3 4 5 The trend of data center, private cloud

More information

SWP-0208G, 8+2SFP. 8-Port Gigabit Web Smart Switch. User s Manual

SWP-0208G, 8+2SFP. 8-Port Gigabit Web Smart Switch. User s Manual SWP-0208G 1 SWP-0208G, 8+2SFP 8-Port Gigabit Web Smart Switch User s Manual Version: 3.4 April 1, 2008 2 TABLE OF CONTENT 1.0 INTRODUCTION...4 1.1 MAIN FEATURES...4 1.2 START TO MANAGE THIS SWITCH...6

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

Dell EMC Big Cloud Fabric Deployment and Best Practices Guide with VMware vsan. Dell EMC Networking Infrastructure Solutions November 2017

Dell EMC Big Cloud Fabric Deployment and Best Practices Guide with VMware vsan. Dell EMC Networking Infrastructure Solutions November 2017 Dell EMC Big Cloud Fabric Deployment and Best Practices Guide with VMware vsan Dell EMC Networking Infrastructure Solutions November 2017 Revisions Date Rev. Description Authors November 2017 1.01 Corrected

More information

Cisco - ASA Lab Camp v9.0

Cisco - ASA Lab Camp v9.0 Cisco - ASA Lab Camp v9.0 Code: 0007 Lengt h: 5 days URL: View Online Based on our enhanced SASAC v1.0 and SASAA v1.2 courses, this exclusive, lab-based course, provides you with your own set of equipment

More information

Dell EMC OpenManage Enterprise-Modular Edition Version for PowerEdge MX7000 Chassis. User's Guide

Dell EMC OpenManage Enterprise-Modular Edition Version for PowerEdge MX7000 Chassis. User's Guide Dell EMC OpenManage Enterprise-Modular Edition Version 1.00.01 for PowerEdge MX7000 Chassis User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better

More information

Model Driven APIs for the Network Infrastructure Layer

Model Driven APIs for the Network Infrastructure Layer Model Driven APIs for the Network Infrastructure Layer Akshat Sharma, Technical Marketing Engineer, Cisco. What brings us here? 2 Plenty of Standardization Efforts The Network Processing Forum (NPF) took

More information

ForeScout CounterACT. Configuration Guide. Version 8.12

ForeScout CounterACT. Configuration Guide. Version 8.12 ForeScout CounterACT Network Module: Switch Plugin Version 8.12 Table of Contents About the Switch Plugin... 6 Plugin Architecture... 6 Communication between the Switch Plugin and Switches... 7 Multi-Process

More information

Dell EMC Ready Architecture for Red Hat OpenStack Platform

Dell EMC Ready Architecture for Red Hat OpenStack Platform Dell EMC Ready Architecture for Red Hat OpenStack Platform Cumulus Switch Configuration Guide Version 13 Dell EMC Service Provider Solutions ii Contents Contents List of Tables...iii Trademarks... iv Notes,

More information

Network Configuration Example

Network Configuration Example Network Configuration Example Adding a New Routing Device to Your Network Modified: 2017-01-17 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All

More information

Data Center Automation

Data Center Automation Data Center Automation About Arista Networks 10/40/100GbE Networks for the Virtualized Cloud & Data Center Founded in 2004 Shipping Since Mid-2008 ANET, IPO (NYSE) in June 2014 1000+ Employees More than

More information

NSX-T Data Center Migration Coordinator Guide. 5 APR 2019 VMware NSX-T Data Center 2.4

NSX-T Data Center Migration Coordinator Guide. 5 APR 2019 VMware NSX-T Data Center 2.4 NSX-T Data Center Migration Coordinator Guide 5 APR 2019 VMware NSX-T Data Center 2.4 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you

More information

Your partner for Success. CCIE Security v5 Lab Access Guide

Your partner for Success. CCIE Security v5 Lab Access Guide Your partner for Success CCIE Security v5 Lab Access Guide Version 1.8 Author: Cloudmylab Support Contents Introduction... 3 Audience... 3 Disclaimer... 3 Legal Liability... 3 Topology... 3 Devices Used...

More information

PSOACI Tetration Overview. Mike Herbert

PSOACI Tetration Overview. Mike Herbert Tetration Overview Mike Herbert Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1. Find this session in the Cisco Live Mobile App 2. Click Join the Discussion

More information

PSGS-2610F L2+ Managed GbE PoE Switch

PSGS-2610F L2+ Managed GbE PoE Switch PSGS-2610F L2+ Managed GbE PoE Switch Overview PSGS-2610F L2+ Managed PoE+ Switch is a next-generation Ethernet Switch offering full suite of L2 features, better PoE functionality and usability, including

More information

Updated in 2017 Free Product Guide for Your Network. Ethernet Switch. Catalog

Updated in 2017 Free Product Guide for Your Network. Ethernet Switch. Catalog Updated in 2017 Free Product Guide for Your Network Ethernet Catalog FS.COM Ethernet FS.COM make your switches purchasing and operation much more easier: This catalog is a guide of FS.COM Ethernet switches

More information

Introduction to Cumulus Linux

Introduction to Cumulus Linux v Introduction to Cumulus Linux Make networks simpler, more affordable, and faster to deploy Last Updated: March 18, 2015 Challenges in networking Cumulus Linux overview Why Cumulus Linux cumulusnetworks.com

More information

Introduction to Aruba Dik van Oeveren Aruba Consulting System Engineer

Introduction to Aruba Dik van Oeveren Aruba Consulting System Engineer Introduction to Aruba 8400 Dik van Oeveren Aruba Consulting System Engineer 8400 Hardware Overview 2 Aruba campus edge switch portfolio 3810M 5400R Advanced Layer 3 Layer 2 2530 8, 24 or 48 ports with

More information

CounterACT Switch Plugin

CounterACT Switch Plugin CounterACT Switch Plugin Version 8.9.5 Table of Contents About the Switch Plugin... 5 Plugin Architecture... 5 Communication between the Switch Plugin and Switches... 6 Multi-Process Switch Plugin Architecture...

More information

INDIGO PAAS TUTORIAL. ! Marica Antonacci RIA INFN-Bari

INDIGO PAAS TUTORIAL. ! Marica Antonacci RIA INFN-Bari INDIGO PAAS TUTORIAL RIA-653549! Marica Antonacci!! marica.antonacci@ba.infn.it! INFN-Bari INDIGO PAAS Tutorial Introductory Concepts TOSCA Ansible Docker Orchestrator APIs INDIGO TOSCA custom types and

More information

Port Usage Information for the IM and Presence Service

Port Usage Information for the IM and Presence Service Port Usage Information for the Service Port usage overview, page 1 Information collated in table, page 1 service port list, page 2 Port usage overview This document provides a list of the and ports that

More information

UCS Technical Deep Dive: Getting to the Heart of the Matter

UCS Technical Deep Dive: Getting to the Heart of the Matter UCS Technical Deep Dive: Getting to the Heart of the Matter Session ID Agenda Introductions UCS Architecture, Innovations, Topology Physical Building Blocks Logical Building Blocks Typical Use Cases (Live

More information

FGS-2616X L2+ Managed GbE Fiber Switches

FGS-2616X L2+ Managed GbE Fiber Switches FGS-2616X L2+ Managed GbE Fiber Switches FGS-2616XD FGS-2616XA FGS-2616X Overview FGS-2616X series L2+ Managed Switch are next-generation Fiber Switch offering full suite of L2 features and additional

More information