TF-NOC Dublin. Alexandros Kosiaris GRNET NOC Use puppet and network inventory to populate nagios/icinga configuration

Size: px
Start display at page:

Download "TF-NOC Dublin. Alexandros Kosiaris (alex@noc.grnet.gr) GRNET NOC Use puppet and network inventory to populate nagios/icinga configuration"

Transcription

1 r GRNET NOC Use puppet and network inventory to populate nagios/icinga configuration TF-NOC Dublin Alexandros Kosiaris (alex@noc.grnet.gr)

2 Network & Equipment Optical Network: ~70 cities (+30 within next year) 15years-leased dark fiber DWDM/CWDM network Optical Equipment: Alcatel 1626LM, 1696MS, 1678MCC Adva FSP2000 Routing Equipment: Juniper T1600, Juniper MX960 ~10x Cisco 12000s, a few Cisco 7200s/7300s Switching Equipment: Cisco 6500 Several Cisco 3750, Cisco 2970, Juniper ex4200, Extreme X450a/X350 Storage Equipment: Netapp/IBM N5300 EMC Celerra NS-480 Computing Equipment: Virtualization (KVM) 12 Blade servers, HP BL-460c 12 IBM 1U Servers 128 1U Fujitsu Servers 275 2U HP Proliant Servers ~200 Vms

3 Nagios + Network Equipment or (more accurately) Switching and Routing In-house developed Network Inventory (a.k.a. GRNETDB) A MySQL database of almost 150 tables Populated multiple times a day by a PHP discovery script SNMP, telnet + expect Basic Concepts: Node Interface Layer Domain Location These concepts get extended to represent functionality Routing, Switching nodes Layer2, Layer3 interfaces Switching, administrative domains

4 Nagios + Network Equipment or (more accurately) Switching and Routing In-house developed python Django project, with multiple sub-apps Network (the interface to the database) RG (router graphs, take a peek at Maps (take a look at Hostmaster Optical network (built mostly on Location info) Nadjicingo Builts on network app and generates a nagios/icinga configuration Nagvis Same thing but generates/updates nagvis config

5 Nadjicingo A Django management command outputing nagios/icinga configuration Run by crontab every hour (manage.py nadjicingo) Will generate nagios configuration objects for Routers Switches Interfaces L3 Topology aware (nagios hates cyclic dependencies aka redundant links), populates parents field for most devices. Hardware checks in devices Business logic embedded in interface descriptions: Part of it is a unique identifier for a customers link [.NTUA-4] => National Technical University's L3 link [AUTH@ERMOU-1] => Aristotle University of Thessaloniki L2 link at Ermou PoP

6 Nagvis A Django management command (again...) Run by crontab every hour (manage.py nagvis) Will update a specific nagvis map configuration by: Removing obsolete nodes Adding new nodes to a special area for manual positioning on map Also features an automated positioning mode based on devices Latitude Longitude. Nice for showoff but not for overview in monitoring applications Will only populate host objects in map. Service objects cluttered it too much and information is rightly available anyway

7 Nagvis Network Map

8 Servers, Services? A little bit of history For years, GRNET only had very basic services (DNS, , Web) And some router supporting services (Looking glass, mrtg, rancid) And very few servers (<=10) 3 years ago, major paradigm shift from networking to services 20 Servers bought, and then 132 and recently 275 more End user services were born: Public cloud storage service (Pithos) Virtual Private Servers (ViMa) Students books statements (Eudoxus) Student Id cards (Paso) Public IaaS (Okeanos) Academic Professor Elections (Apella) Plus many other services and projects (TCS, Whois, NTP, VoD, ) The result? => 200 Vms were created for managing all this infrastructure

9 Puppet to the rescue What is Puppet? It's a stack of applications It's a language (a declarative one as well) It's a policy and state enforcing tool It's a attribute and state discovery tool (kind of...) It's a new paradigm in managing systems! What is Puppet not? Not just an automation tool Not a For loop Not a command execution framework (it can be reduced to that though) AGAIN: A new paradigm, you need to change the way you work

10 Puppet Concepts Facts Attributes of a system: OS Version and family Available memory CPUs Block devices IP addresses/netmasks MAC addresses And anything else you can write code for it to be discovered LLDP neighbours IPMI functionality Hardware info Apache vhosts Discovered by facter and then made available to Puppet

11 Puppet Concepts(2) Resources Files, Directories Users, Groups Packages Vlans Interfaces Nagios objects!!!! And a lot more ( Classes A way to group resources Support inheritance and mixins (aka including) The standard class has 3 resources defined Package {'software': File { '/etc/software.conf': Service { 'softwared':

12 Puppet Concepts(3) Nodes A.k.a. machines (VM or hardware) A node CAN (and probably will) have multiple puppet classes Node population can be done in multiple ways: Puppet language config LDAP External script Puppetd agents running in each machine (daemon or crontab) Central Puppetmaster (with an RDBMS) holds all the configuration and data

13 Hello World example class helloworld { file { '/tmp/helloworld': ensure => present, owner => root, group => root, mode => 640, content => 'Hello world' node mynode { include helloworld Will create the /tmp/helloworld with all the attributes as defined above More importantly, if run again it will make sure to wipe any possible changes and restore the state as is defined above

14 Back to nagios Let s use a puppet native type nagios_host { $hostname : address => , alias => myhost, contact_groups => hostadmins, hostgroups => 'Puppeted Servers', /etc/nagios/nagios_host.cfg gets populated Problem is... This is executed in the machine running puppetd not the nagios server. No problem. Puppet supports exported resources.

15 Exported resources Let s prepend the definition with { 'myservice' contact_groups => hostadmins, host_name => $hostname, tag => 'collect_me_nagios_server', Exports the resource but does not realize it on the machine running puppetd No /etc/nagios/nagios_service.cfg file created << Nagios_service tag == 'collect_me_nagiosserver' >> In nagios server s manifest. /etc/nagios/nagios_service.cfg populated. nagios,icinga.cfg can now just include the file/directory and monitoring begins

16 Simple example A manifest for all authoritative DNS servers Install bind9, install configuration and ensure it is running Open up firewall Setup a simple DNS check class authoritativedns { include bind9 include { "authdns": command => "check_dig! servicegroups => "DNS,DNS:Authoritative"

17 Interesting use cases Class hierarchy means: A base class nagios::host that is included in all other So all servers nagios-monitored without any intervention But: A Server is physical and has IPMI capabilities: So export another nagios host for it if $ipmi_capable { "$ipmi_dns": address => $ipmi_ipaddress, tag => "hardwarehost",

18 Interesting use cases (2) Server is an HP Proliant Server class hp-health { package { [ 'hp-health', 'hpacucli' ]: ensure => present, nagios::host::service { 'hpacucli': ensure => present, servicegroups => 'HARDWARE', command => 'check_nrpe!dsa-check-hpacucli!0', nagios::host::service { 'hpasm': ensure => present, servicegroups => 'HARDWARE', command => 'check_nrpe!dsa-check-hpasm!0',

19 Interesting use cases (3) Multicast beacons (double exported resources!!!) define ssmping_check($ipv4, $ipv6) { $local = $::fqdn $remote = $name if ($::ipaddress and $ipv4 and $local!= $remote) { "ping-ssm-$remote-$local-v4": ensure => present, check_command => "check_nrpe!check_ssmping!$ipv4", host_name => $local, service_description => "Multicast from $remote SSM IPv4", # export the { $fqdn: ipv4 => $ipaddress, ipv6 => $ipv6address

20 Interesting use cases (4) Standard checks for all servers nagios::host::service { "disk": command => "check_nrpe!check_disk!13% 7%", nagios::host::service { "load": command => "check_nrpe!check_load!4,3,2 5,4,3", nagios::host::service { "users": command => "check_nrpe!check_load!20 30", nagios::host::service { "swap": command => "check_nrpe!check_swap!60 40", nagios::host::service { "check_tainted": command => "check_nrpe!check_tainted!0", nagios::host::service { "check_firewall": command => "check_nrpe!check_firewall!0",

21 Problems arise /etc/nagios/*.cfg files can become quickly large However each resource collection reads the entire file Problem solved by disabling collections and creating the entire config file every time, however a more elegant solution would be nice Exported resources cost Each is an entry in the database and they are not used for nagios alone. Execution speed suffers and sometimes times out Problem solved in database by adding some indexes... but is bound to show up again Puppet devs know it, some effort goes there

22 Problems arise (2) Puppet's declarative language can cause problems at times { 'myhost': Hostgroups => $myhostgroups And host also has classes A,B,C apart from nagios class. Which class is going to declare $myhostgroups? Multiple solutions exist, all of them not elegant. Externally (via LDAP) Fact based Populated hostgroups, not hosts

23 Problems arise (3) Active checks cost. Not a Puppet issue but a nagios one check_mk Distributed monitoring Well obsess_over_services sucks mod_gearman For now splitting the infrastructure in Networking Services But if Services grow more? Variable tagging on { 'myservice' contact_groups => hostadmins, host_name => $hostname, tag => 'collect_me_nagios_server_n',

24 r Questions? Alexandros Kosiaris GRNET NOC Systerms Admin alex@noc.grnet.gr

GRNET NOC network monitoring & visualization tools

GRNET NOC network monitoring & visualization tools http://www.grnet.gr GRNET NOC network monitoring & TF-NOC Zurich Alex Kosiaris (alex@noc.grnet.gr) Leonidas Poulopoulos (leopoul@noc.grnet.gr) Network monitoring Constant monitoring of network for components

More information

Details. Some details on the core concepts:

Details. Some details on the core concepts: Details Some details on the core concepts: Network documentation Diagnostic tools Monitoring tools Performance tools Active and passive tools SNMP Ticket systems Configuration and change management Documentation

More information

The Puppet Show Managing Servers with Puppet

The Puppet Show Managing Servers with Puppet The Puppet Show Managing Servers with Puppet A gentle introduction to Puppet; How it works, What its benefits are And how to use it Robert Harker harker@harker.com whoami UNIX/Linux sysadmin for over 25

More information

Network Documentation & Netdot

Network Documentation & Netdot Network Monitoring and Management Network Documentation & Netdot These materials are licensed under the Creative Commons Attribution-Noncommercial 3.0 Unported license (http://creativecommons.org/licenses/by-nc/3.0/)

More information

Secure Linux Administration Conference 2013. Bernd Strößenreuther

Secure Linux Administration Conference 2013. Bernd Strößenreuther Puppet getting started Best practices on how to turn Your environment into a Puppet managed environment Secure Linux Administration Conference 2013 Berlin 2013 06 06 Bernd Strößenreuther mailto:slac@stroessenreuther.info

More information

Delivering IaaS for the Greek Academic and Research Community

Delivering IaaS for the Greek Academic and Research Community Greek Research and Technology Network Internal Presentation 59 Delivering IaaS for the Greek Academic and Research Community Vangelis Koukis vkoukis@grnet.gr ki Technical Coordinator, okeanos Project Greek

More information

The road to lazy monitoring with Icinga2 & Puppet. Tom De Vylder @tomdevylder

The road to lazy monitoring with Icinga2 & Puppet. Tom De Vylder @tomdevylder The road to lazy monitoring with Icinga2 & Puppet Tom De Vylder @tomdevylder whois Ops guy Rusty, old, Bavarian vehicles enthousiast The one who always gets the patdown at checkpoints Open Source Consultant

More information

Automation in the Cloud Using Open Source Software. Michael Eichenberger CEO stepping stone GmbH Open Cloud Day 11th of June 2013

Automation in the Cloud Using Open Source Software. Michael Eichenberger CEO stepping stone GmbH Open Cloud Day 11th of June 2013 Automation in the Cloud Using Open Source Software Michael Eichenberger CEO stepping stone GmbH Open Cloud Day Agenda About us Why Cloud Management and Automation? Necessary Software Components Virtual

More information

NeDi. Network Discovery that Really Works. Dr. Michael Schwartzkopff. more than software

NeDi. Network Discovery that Really Works. Dr. Michael Schwartzkopff. more than software NeDi Network Discovery that Really Works Dr. Michael Schwartzkopff Intoduction Member of the new SYS4 Inc. My focus: High Availability, Network Management, IT Security Some other partners: Joerg Heidrich,

More information

Solution for private cloud computing

Solution for private cloud computing The CC1 system Solution for private cloud computing 1 Outline What is CC1? Features Technical details Use cases By scientist By HEP experiment System requirements and installation How to get it? 2 What

More information

Solution for private cloud computing

Solution for private cloud computing The CC1 system Solution for private cloud computing 1 Outline What is CC1? Features Technical details System requirements and installation How to get it? 2 What is CC1? The CC1 system is a complete solution

More information

IPv6 network management. ATHENS 2005 Simon MUYAL

IPv6 network management. ATHENS 2005 Simon MUYAL IPv6 network management ATHENS 2005 Simon MUYAL 1 Simon Muyal, RENATER Bernard Tuy, RENATER Jérôme Durand, RENATER Ralf Wolter, Cisco Patrick Grossetête, Cisco Munechika Sumikawa, Hitachi Patrick Paul,

More information

Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide. Revised February 28, 2013 2:32 pm Pacific

Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide. Revised February 28, 2013 2:32 pm Pacific Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide Revised February 28, 2013 2:32 pm Pacific Apache CloudStack 4.x (incubating) Network Setup: excerpt from Installation Guide

More information

OpenITSM - IT Service Management with Open Source Software

OpenITSM - IT Service Management with Open Source Software OpenITSM - IT Service Management with Open Source Software 03.02.2011 CloudExpo London Speaker: Julian Hein NETWAYS Founded 1995 26 full time employees Headquarter Nuremberg, Germany Focus on Open Source

More information

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3

NOC PS manual. Copyright Maxnet 2009 2015 All rights reserved. Page 1/45 NOC-PS Manuel EN version 1.3 NOC PS manual Copyright Maxnet 2009 2015 All rights reserved Page 1/45 Table of contents Installation...3 System requirements...3 Network setup...5 Installation under Vmware Vsphere...8 Installation under

More information

DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System

DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System DEPLOYMENT GUIDE Version 1.0 Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System Deploying F5 with Nagios Open Source Network Monitoring System Welcome to the F5 and Nagios deployment

More information

w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform

w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform http://www.ulticloud.com http://www.openstack.org Introduction to OpenStack 1. What OpenStack is

More information

IPv6 network management. Where and when?

IPv6 network management. Where and when? IPv6 network management 1 Contributions Simon Muyal, RENATER Bernard Tuy, RENATER Jérôme Durand, RENATER Ralf Wolter, Cisco Patrick Grossetête, Cisco Munechika Sumikawa, Hitachi Patrick Paul, 6WIND 2 Agenda

More information

Hosting more than one FortiOS instance on. VLANs. 1. Network topology

Hosting more than one FortiOS instance on. VLANs. 1. Network topology Hosting more than one FortiOS instance on a single FortiGate unit using VDOMs and VLANs 1. Network topology Use Virtual domains (VDOMs) to divide the FortiGate unit into two or more virtual instances of

More information

How To Understand and Configure Your Network for IntraVUE

How To Understand and Configure Your Network for IntraVUE How To Understand and Configure Your Network for IntraVUE Summary This document attempts to standardize the methods used to configure Intrauve in situations where there is little or no understanding of

More information

Availability Management Nagios overview. TEIN2 training Bangkok September 2005

Availability Management Nagios overview. TEIN2 training Bangkok September 2005 1 Availability Management Nagios overview Agenda 2 Introduction Objectives Functionalities Requirement. Architecture & Operation Operation Description WEB portal Plugins and extensions Plugins description

More information

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide

Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide Cloud.com CloudStack Community Edition 2.1 Beta Installation Guide July 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, Hypervisor Attached Storage, HAS, Hypervisor

More information

How to Setup Bare Metal Adaxa Suite Demonstration Box

How to Setup Bare Metal Adaxa Suite Demonstration Box How to Setup Bare Metal Adaxa Suite Demonstration Box Level 1 616 St Kilda Road Melbourne Victoria 3004 T:1-300-990-120 Email: info@adaxa.com Web: www.adaxa.com Table of Contents Pre-Requisites 1.1 Hardware

More information

The Netdot Manual. Network Documentation Tool Version 0.9. Copyright 2010 University of Oregon, all rights reserved.

The Netdot Manual. Network Documentation Tool Version 0.9. Copyright 2010 University of Oregon, all rights reserved. Network Documentation Tool Version 0.9 Copyright 2010 University of Oregon, all rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General

More information

Reference to common tasks

Reference to common tasks APPENDIXA This section provides how-to information for common tasks that you need to know how to do before you can effectively work with the vcom Command Center. Creating and editing domains Working with

More information

1 Basic Configuration of Cisco 2600 Router. Basic Configuration Cisco 2600 Router

1 Basic Configuration of Cisco 2600 Router. Basic Configuration Cisco 2600 Router 1 Basic Configuration of Cisco 2600 Router Basic Configuration Cisco 2600 Router I decided to incorporate the Cisco 2600 into my previously designed network. This would give me two seperate broadcast domains

More information

Design, Implementation and Evolution of a DNS anycast resolving service in a country-wide ISP network

Design, Implementation and Evolution of a DNS anycast resolving service in a country-wide ISP network Design, Implementation and Evolution of a DNS anycast resolving service in a country-wide ISP network Kostas Zorbadelos OTE SA Senior Systems & Network Engineer GRNOG 1 June 5 2015 Presentation Outline

More information

Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide

Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide Active Fabric Manager (AFM) Plug-in for VMware vcenter Virtual Distributed Switch (VDS) CLI Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use

More information

Network Technologies for Next-generation Data Centers

Network Technologies for Next-generation Data Centers Network Technologies for Next-generation Data Centers SDN-VE: Software Defined Networking for Virtual Environment Rami Cohen, IBM Haifa Research Lab September 2013 Data Center Network Defining and deploying

More information

Event Listener based UCS Integration with OpenStack

Event Listener based UCS Integration with OpenStack Event Listener based UCS Integration with OpenStack 1 Table of Contents 1 Overview... 4 1.1 Integration architecture... 5 2 Installation... 6 2.1 Pre-install check list... 6 2.2 OpenStack and network requirements...

More information

IPv6 network management

IPv6 network management IPv6 network management Contributions Simon Muyal, RENATER Bernard Tuy, RENATER Jérôme Durand, RENATER Ralf Wolter, Cisco Patrick Grossetête, Cisco Munechika Sumikawa, Hitachi Patrick Paul, 6WIND 1 Agenda

More information

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud

SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux

More information

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Configuring NTP. Information about NTP. NTP Overview. Send document comments to nexus1k-docfeedback@cisco.com. CHAPTER

Configuring NTP. Information about NTP. NTP Overview. Send document comments to nexus1k-docfeedback@cisco.com. CHAPTER CHAPTER 8 This chapter describes how to configure the Network Time Protocol (NTP) and includes the following topics: Information about NTP, page 8-1 Prerequisites for NTP, page 8-3 Configuration Guidelines

More information

How To Manage Ipv6 Networks On A Network With Ipvv6 (Ipv6) On A Pc Or Ipv4 (Ip6) (Ip V6) Or Ip V6 ( Ipv5) ( Ip V5

How To Manage Ipv6 Networks On A Network With Ipvv6 (Ipv6) On A Pc Or Ipv4 (Ip6) (Ip V6) Or Ip V6 ( Ipv5) ( Ip V5 IPv6 networks management Simon.Muyal@renater.fr Contribs Bernard Tuy, Renater Simon Muyal, Renater Ralf Wolter, Cisco Patrick Grossetête, Cisco Munechika Sumikawa, Hitachi Patrick Paul, 6WIND Simon Muyal

More information

How To Make A Virtual Machine Aware Of A Network On A Physical Server

How To Make A Virtual Machine Aware Of A Network On A Physical Server VMready Virtual Machine-Aware Networking White Paper Table of Contents Executive Summary... 2 Current Server Virtualization Environments... 3 Hypervisors... 3 Virtual Switches... 3 Leading Server Virtualization

More information

TPAf KTl Pen source. System Monitoring. Zenoss Core 3.x Network and

TPAf KTl Pen source. System Monitoring. Zenoss Core 3.x Network and Zenoss Core 3.x Network and System Monitoring A step-by-step guide to configuring, using, and adapting this free Open Source network monitoring system Michael Badger TPAf KTl Pen source I I flli\ I I community

More information

Centerity Monitor Standard V3.8 USER GUIDE VERSION 7.14

Centerity Monitor Standard V3.8 USER GUIDE VERSION 7.14 Centerity Monitor Standard V3.8 USER GUIDE VERSION 7.14 2 Contents About This Guide... 4 End-User License Agreement (EULA)... 4 Before You Begin... 4 Audience... 4 Related Documentation... 4 Chapter 1:

More information

Review of GRNET s-NOC virtualization Network

Review of GRNET s-NOC virtualization Network Scaling up your virtualization infrastructure Apollon Oikonomopoulos and Faidon Liambotis Greek Research and Technology Network 56 Mesogeion Ave., 115 27, Athens, Greece {apollon,faidon}@noc.grnet.gr Abstract

More information

IPv6 network management. 6DEPLOY. IPv6 Deployment and Support

IPv6 network management. 6DEPLOY. IPv6 Deployment and Support IPv6 network management 6DEPLOY. IPv6 Deployment and Support 1 Contributions Simon Muyal, RENATER Bernard Tuy, RENATER Jérôme Durand, RENATER Ralf Wolter, Cisco Patrick Grossetête, Cisco 10/28/2010 IPv6

More information

mbits Network Operations Centrec

mbits Network Operations Centrec mbits Network Operations Centrec The mbits Network Operations Centre (NOC) is co-located and fully operationally integrated with the mbits Service Desk. The NOC is staffed by fulltime mbits employees,

More information

Trademark Notice. General Disclaimer

Trademark Notice. General Disclaimer Trademark Notice General Disclaimer Intelligent Management, Centralized Operation & Maintenance Huawei Data Center Network Management Solution A data center is an integrated IT application environment

More information

OpenITSM - IT Service Management with Open Source Software

OpenITSM - IT Service Management with Open Source Software OpenITSM - IT Service Management with Open Source Software März 2011 CeBIT Speaker: Julian Hein NETWAYS Founded 1995 26 full time employees Headquarter Nuremberg, Germany Focus on Open Source in Systems

More information

IPv6 Network Management. touch@coe.psu.ac.th

IPv6 Network Management. touch@coe.psu.ac.th IPv6 Network Management touch@coe.psu.ac.th Outline Introduction Managing IPv6 networks SNMP over IPv6 Management platforms Management tools IPv6 LAN IPv6 MAN/WAN Examples/Demos Introduction Manage a network:

More information

Making System Administration Easier by Letting the Machines Do the Hard Work, Or, Becoming an Agile Sysadmin

Making System Administration Easier by Letting the Machines Do the Hard Work, Or, Becoming an Agile Sysadmin Making System Administration Easier by Letting the Machines Do the Hard Work, Or, Becoming an Agile Sysadmin JOSHUA FISKE Joshua Fiske is the Manager of User Services at Clarkson University. In this role,

More information

Switching in an Enterprise Network

Switching in an Enterprise Network Switching in an Enterprise Network Introducing Routing and Switching in the Enterprise Chapter 3 Version 4.0 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectives Compare the types of

More information

GRNET Cloud Compu7ng Services An Overview

GRNET Cloud Compu7ng Services An Overview GRNET Cloud Compu7ng Services An Overview Panos Louridas louridas@grnet.gr GN3 Innova7on Workshop Copenhagen, October 10 11 2011 Greek Research and Technology Network 2 Outline u okeanos IaaS u pithos

More information

Nagios and Cloud Computing

Nagios and Cloud Computing Nagios and Cloud Computing Presentation by William Leibzon (william@leibzon.org) Nagios Thanks for being here! Open Source System Management Conference May 10, 2012 Bolzano, Italy Cloud Computing What

More information

Designing Virtual Network Security Architectures Dave Shackleford

Designing Virtual Network Security Architectures Dave Shackleford SESSION ID: CSV R03 Designing Virtual Network Security Architectures Dave Shackleford Sr. Faculty and Analyst SANS @daveshackleford Introduction Much has been said about virtual networking and softwaredefined

More information

Maintaining Non-Stop Services with Multi Layer Monitoring

Maintaining Non-Stop Services with Multi Layer Monitoring Maintaining Non-Stop Services with Multi Layer Monitoring Lahav Savir System Architect and CEO of Emind Systems lahavs@emindsys.com www.emindsys.com The approach Non-stop applications can t leave on their

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

Cisco Certified Network Associate Exam. Operation of IP Data Networks. LAN Switching Technologies. IP addressing (IPv4 / IPv6)

Cisco Certified Network Associate Exam. Operation of IP Data Networks. LAN Switching Technologies. IP addressing (IPv4 / IPv6) Cisco Certified Network Associate Exam Exam Number 200-120 CCNA Associated Certifications CCNA Routing and Switching Operation of IP Data Networks Operation of IP Data Networks Recognize the purpose and

More information

WhatsUpGold. v3.0. WhatsConnected User Guide

WhatsUpGold. v3.0. WhatsConnected User Guide WhatsUpGold v3.0 WhatsConnected User Guide Contents CHAPTER 1 Welcome to WhatsConnected Finding more information and updates... 2 Sending feedback... 3 CHAPTER 2 Installing and Configuring WhatsConnected

More information

IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved.

IP Addressing and Subnetting. 2002, Cisco Systems, Inc. All rights reserved. IP Addressing and Subnetting 2002, Cisco Systems, Inc. All rights reserved. 1 Objectives Upon completion, you will be able to: Discuss the Types of Network Addressing Explain the Form of an IP Address

More information

AGENDA: INTRODUCTION: 1. How is our cloud monitoring setup? 2. Which are the tools used? 3. How do we access monitoring dashboard?

AGENDA: INTRODUCTION: 1. How is our cloud monitoring setup? 2. Which are the tools used? 3. How do we access monitoring dashboard? Nagios Introduction AGENDA: INTRODUCTION: 1. How is our cloud monitoring setup? 2. Which are the tools used? 3. How do we access monitoring dashboard? 4. What are the user id / password? 5. How to check

More information

System Requirements and Server Configuration

System Requirements and Server Configuration Hardware Requirements for C Series, page 1 Open Virtualization Files, page 2 VMware Hosting, page 2 Software, page 2 Side A Server Component Configurations, page 5 Side B Server Component Configurations,

More information

Introduction to Junos Space Network Director

Introduction to Junos Space Network Director Introduction to Junos Space Network Director Release 2.0 Published: 2015-02-12 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All rights

More information

VXLAN: Scaling Data Center Capacity. White Paper

VXLAN: Scaling Data Center Capacity. White Paper VXLAN: Scaling Data Center Capacity White Paper Virtual Extensible LAN (VXLAN) Overview This document provides an overview of how VXLAN works. It also provides criteria to help determine when and where

More information

PANDORA FMS NETWORK DEVICES MONITORING

PANDORA FMS NETWORK DEVICES MONITORING NETWORK DEVICES MONITORING pag. 2 INTRODUCTION This document aims to explain how Pandora FMS can monitor all the network devices available in the market, like Routers, Switches, Modems, Access points,

More information

Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets

Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets All contents are Copyright 1992 2007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1 of 8 Device Interface

More information

Tue Apr 19 11:03:19 PDT 2005 by Andrew Gristina thanks to Luca Deri and the ntop team

Tue Apr 19 11:03:19 PDT 2005 by Andrew Gristina thanks to Luca Deri and the ntop team Tue Apr 19 11:03:19 PDT 2005 by Andrew Gristina thanks to Luca Deri and the ntop team This document specifically addresses a subset of interesting netflow export situations to an ntop netflow collector

More information

Lab 4.5.4 Diagramming External Traffic Flows

Lab 4.5.4 Diagramming External Traffic Flows Lab 4.5.4 Diagramming External Traffic Flows Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 R2 R3 FC-CPE-1 FC-CPE-2 ISP Fa0/1 172.17.0.1

More information

Best Practices for Python in the Cloud: Lessons Learned @ActiveState

Best Practices for Python in the Cloud: Lessons Learned @ActiveState Best Practices for Python in the Cloud: Lessons Learned @ActiveState Best Practices for Python in the Cloud Presented by: Gisle Aas, Senior Developer, ActiveState whoami? Gisle Aas! gisle@activestate.com!

More information

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case) 10 th International Conference on Software Testing June 18 21, 2013 at Bangalore, INDIA by Sowmya Krishnan, Senior Software QA Engineer, Citrix Copyright: STeP-IN Forum and Quality Solutions for Information

More information

PANDORA FMS NETWORK DEVICE MONITORING

PANDORA FMS NETWORK DEVICE MONITORING NETWORK DEVICE MONITORING pag. 2 INTRODUCTION This document aims to explain how Pandora FMS is able to monitor all network devices available on the marke such as Routers, Switches, Modems, Access points,

More information

PowerVC 1.2 Q4 2013 Power Systems Virtualization Center

PowerVC 1.2 Q4 2013 Power Systems Virtualization Center PowerVC 1.2 Q4 2013 Power Systems Virtualization Center At last a simple tool to spin-off Power Virtual Machines with very little effort Nigel Griffiths IBM Power Systems Corporation Advanced Technology

More information

Restricted Document. Pulsant Technical Specification

Restricted Document. Pulsant Technical Specification Pulsant Technical Specification Title Pulsant Government Virtual Server IL2 Department Cloud Services Contributors RR Classification Restricted Version 1.0 Overview Pulsant offer two products based on

More information

OM2012 Network Monitoring. Phil Bracher Sr. Premier Field Engineer Microsoft Corporation

OM2012 Network Monitoring. Phil Bracher Sr. Premier Field Engineer Microsoft Corporation OM2012 Network Monitoring Phil Bracher Sr. Premier Field Engineer Microsoft Corporation Continuous Availability of the Management Group: Resource Pooling Config service Scale and Federation Data Access

More information

IBM Cloud Manager with OpenStack

IBM Cloud Manager with OpenStack IBM Cloud Manager with OpenStack Download Trial Guide Cloud Solutions Team: Cloud Solutions Beta cloudbta@us.ibm.com Page 1 Table of Contents Chapter 1: Introduction...3 Development cycle release scope...3

More information

1 Data Center Infrastructure Remote Monitoring

1 Data Center Infrastructure Remote Monitoring Page 1 of 7 Service Description: Cisco Managed Services for Data Center Infrastructure Technology Addendum to Cisco Managed Services for Enterprise Common Service Description This document referred to

More information

Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting

Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course ID RHL200 Red Hat Linux Administration II Installation, Configuration, Software and Troubleshooting Course Description Students will experience added understanding of configuration issues of disks,

More information

Η υπηρεσία Public IaaS Cloud @ ΕΔΕΤ ανάπτυξη και λειτουργία για χιλιάδες χρήστες

Η υπηρεσία Public IaaS Cloud @ ΕΔΕΤ ανάπτυξη και λειτουργία για χιλιάδες χρήστες Η υπηρεσία Public IaaS Cloud @ ΕΔΕΤ ανάπτυξη και λειτουργία για χιλιάδες χρήστες Nectarios Koziris, GRNET Greek Research and Technology Network Cloud Computing Conference 2013 (Plaza, Maroussi) 1 Greek

More information

IPv6 network management. Malta, April 2006

IPv6 network management. Malta, April 2006 IPv6 network management Contributions Simon Muyal, RENATER Bernard Tuy, RENATER Jérôme Durand, RENATER Ralf Wolter, Cisco Patrick Grossetête, Cisco Munechika Sumikawa, Hitachi Patrick Paul, 6WIND Agenda

More information

VMware vsphere-6.0 Administration Training

VMware vsphere-6.0 Administration Training VMware vsphere-6.0 Administration Training Course Course Duration : 20 Days Class Duration : 3 hours per day (Including LAB Practical) Classroom Fee = 20,000 INR Online / Fast-Track Fee = 25,000 INR Fast

More information

Windows Active Directory. DNS, Kerberos and LDAP T h u r s d a y, J a n u a r y 2 7, 2011 INLS 576 Spring 2011

Windows Active Directory. DNS, Kerberos and LDAP T h u r s d a y, J a n u a r y 2 7, 2011 INLS 576 Spring 2011 Windows Active Directory DNS, Kerberos and LDAP T h u r s d a y, J a n u a r y 2 7, 2011 INLS 576 Spring 2011 1 DNS? LDAP? Kerberos? Active Directory relies of DNS to register and locate services Active

More information

Network Monitoring with Nagios. Matt Gracie, Information Security Administrator Canisius College, Buffalo, NY

Network Monitoring with Nagios. Matt Gracie, Information Security Administrator Canisius College, Buffalo, NY Network Monitoring with Nagios Matt Gracie, Information Security Administrator Canisius College, Buffalo, NY Canisius College is one of 28 Jesuit colleges in the nation and the premier private college

More information

Mark Bennett. Search and the Virtual Machine

Mark Bennett. Search and the Virtual Machine Mark Bennett Search and the Virtual Machine Agenda Intro / Business Drivers What to do with Search + Virtual What Makes Search Fast (or Slow!) Virtual Platforms Test Results Trends / Wrap Up / Q & A Business

More information

Cloud.com CloudStack Installation Guide

Cloud.com CloudStack Installation Guide Cloud.com CloudStack Installation Guide Version 2.2 early access release November 20, 2010 1 Specifications are subject to change without notice. The Cloud.com logo, Cloud.com, CloudStack, Hypervisor Attached

More information

whitepaper Absolute Manage: Client Management Managing Macs in a Windows Environment

whitepaper Absolute Manage: Client Management Managing Macs in a Windows Environment Absolute Manage: Client Management Intelligent, Automated, Cross-Platform Management of All Your Computers if you can buy one, and only one set of tools for managing your Mac network, Absolute Manage would

More information

ACME Enterprises IT Infrastructure Assessment

ACME Enterprises IT Infrastructure Assessment Prepared for ACME Enterprises March 25, 2014 Table of Contents Executive Summary...2 Introduction...2 Background...2 Scope of IT Assessment...2 Findings...2 Detailed Findings for Key Areas Reviewed...3

More information

Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials.

Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. Note: This case study utilizes Packet Tracer. Please see the Chapter 5 Packet Tracer file located in Supplemental Materials. CHAPTER 5 OBJECTIVES Configure a router with an initial configuration. Use the

More information

ManageEngine (division of ZOHO Corporation) www.manageengine.com. Infrastructure Management Solution (IMS)

ManageEngine (division of ZOHO Corporation) www.manageengine.com. Infrastructure Management Solution (IMS) ManageEngine (division of ZOHO Corporation) www.manageengine.com Infrastructure Management Solution (IMS) Contents Primer on IM (Infrastructure Management)... 3 What is Infrastructure Management?... 3

More information

How To Install Openstack On Ubuntu 14.04 (Amd64)

How To Install Openstack On Ubuntu 14.04 (Amd64) Getting Started with HP Helion OpenStack Using the Virtual Cloud Installation Method 1 What is OpenStack Cloud Software? A series of interrelated projects that control pools of compute, storage, and networking

More information

TOSCA Interoperability Demonstration

TOSCA Interoperability Demonstration Topology and Orchestration Specification for Cloud Applications (TOSCA) Standard TOSCA Interoperability Demonstration Participating Companies: Join the TOSCA Technical Committee www.oasis-open.org, join@oasis-open.org

More information

1 Data information is sent onto the network cable using which of the following? A Communication protocol B Data packet

1 Data information is sent onto the network cable using which of the following? A Communication protocol B Data packet Review questions 1 Data information is sent onto the network cable using which of the following? A Communication protocol B Data packet C Media access method D Packages 2 To which TCP/IP architecture layer

More information

Load Balancing & High Availability

Load Balancing & High Availability Load Balancing & High Availability 0 Optimizing System Resources through Effective Load Balancing An IceWarp White Paper October 2008 www.icewarp.com 1 Background Every server is finite. Regardless of

More information

Lab 3: VFILER Management and Commands

Lab 3: VFILER Management and Commands Lab 3: VFILER Management and Commands The goal of this lab is to run vfiler commands to learn how to manage vfilers. We will use the FAS3170 since there are no vfilers on it yet and want to leave the FAS6080A/B

More information

SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment

SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment Best Practices Guide www.suse.com SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment Written by B1 Systems GmbH Table of Contents Introduction...3 Use Case Overview...3 Hardware

More information

Feature Comparison: idrac 7 & 8 and idrac8 License Chart

Feature Comparison: idrac 7 & 8 and idrac8 License Chart Feature Comparison: idrac 7 & 8 and License Chart This brief contains information to assist customers with questions about the with Lifecycle Controller s licenses and features that are available with

More information

Deploy Your First CF App on Azure with Template and Service Broker. Thomas Shao, Rita Zhang, Bin Xia Microsoft Azure Team

Deploy Your First CF App on Azure with Template and Service Broker. Thomas Shao, Rita Zhang, Bin Xia Microsoft Azure Team Deploy Your First CF App on Azure with Template and Service Broker Thomas Shao, Rita Zhang, Bin Xia Microsoft Azure Team Build, Stage, Deploy, Publish Applications with one Command Supporting Languages

More information

INTRODUCTION TO CLOUD MANAGEMENT

INTRODUCTION TO CLOUD MANAGEMENT CONFIGURING AND MANAGING A PRIVATE CLOUD WITH ORACLE ENTERPRISE MANAGER 12C Kai Yu, Dell Inc. INTRODUCTION TO CLOUD MANAGEMENT Oracle cloud supports several types of resource service models: Infrastructure

More information

Virtualized Converged Data Centers & Cloud how these trends are effecting Optical Networks

Virtualized Converged Data Centers & Cloud how these trends are effecting Optical Networks Virtualized Converged Data Centers & Cloud how these trends are effecting Optical Networks Todd Bundy Director, Global Alliances-Enterprise ADVA Optical Networking tbundy@advaoptical.com 203-746-8060 Connecting

More information

Interconnecting IPv6 Domains Using Tunnels

Interconnecting IPv6 Domains Using Tunnels Interconnecting Domains Using Tunnels Version History Version Number Date Notes 1 30 July 2002 This document was created. 2 19 May 2003 Updated the related documents section. This document describes how

More information

Centerity Monitor Standard V3.8.4 USER GUIDE VERSION 9.15

Centerity Monitor Standard V3.8.4 USER GUIDE VERSION 9.15 Centerity Monitor Standard V3.8.4 USER GUIDE VERSION 9.15 2 Contents About This Guide... 4 End-User License Agreement (EULA)... 4 Before You Begin... 4 Audience... 4 Related Documentation... 4 Technical

More information

Optimization of QoS for Cloud-Based Services through Elasticity and Network Awareness

Optimization of QoS for Cloud-Based Services through Elasticity and Network Awareness Master Thesis: Optimization of QoS for Cloud-Based Services through Elasticity and Network Awareness Alexander Fedulov 1 Agenda BonFIRE Project overview Motivation General System Architecture Monitoring

More information

OpenStack/Quantum SDNbased network virtulization with Ryu

OpenStack/Quantum SDNbased network virtulization with Ryu OpenStack/Quantum SDNbased network virtulization with Ryu Kei Ohmura NTT May 31, 2013 Outline Introduction to Ryu OpenStack Quantum and Ryu Demo Summary 2 What is Ryu 流流 (ryu) means flow 龍龍 (ryu) means

More information

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013

LOCKSS on LINUX. CentOS6 Installation Manual 08/22/2013 LOCKSS on LINUX CentOS6 Installation Manual 08/22/2013 1 Table of Contents Overview... 3 LOCKSS Hardware... 5 Installation Checklist... 6 BIOS Settings... 9 Installation... 10 Firewall Configuration...

More information

The role of Access and Control in DCIM

The role of Access and Control in DCIM Data Center Infrastructure Management for System Administrators The role of Access and Control in DCIM Table of Contents 1. Executive Summary... 3 2. Server Access & Control... 4 2.1 Remote Access Tools

More information

PT Activity 8.1.2: Network Discovery and Documentation Topology Diagram

PT Activity 8.1.2: Network Discovery and Documentation Topology Diagram Topology Diagram All contents are Copyright 1992 2007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1 of 6 Addressing Table Device Interface IP Address Subnet

More information

SDN: A NEW PARADIGM. Kireeti Kompella CTO, JDI

SDN: A NEW PARADIGM. Kireeti Kompella CTO, JDI SDN: A NEW PARADIGM Kireeti Kompella CTO, JDI AGENDA What is SDN? Definition and goals of SDN Analogy with Compute Virtualization Orchestration for Agile Provisioning Unified SDN What parts of the network

More information