Knowledge is Power. He who gets wisdom loves his own soul; he who cherishes understanding prospers. (Proverbs 19:8)

Size: px
Start display at page:

Download "Knowledge is Power. He who gets wisdom loves his own soul; he who cherishes understanding prospers. (Proverbs 19:8)"

Transcription

1 Knowledge is Power He who gets wisdom loves his own soul; he who cherishes understanding prospers. (Proverbs 19:8)

2 Monitoring Tool -MRTG on CentOS 6.4 Jeong Chul tland12.wordpress.com Computer Science ITC and RUPP in Cambodia

3 Monitoring Tool - MRTG on CentOS 6.4 Part 1 Managed Devices Chapter 1 Network Monitoring Structure Chapter 2 Basic Terminology Chapter 3 Testing Environment Chapter 4 Managed Devices Chapter 5 MRTG Configuration (1) Part 2 NMS MRTG Chapter 5 MRTG Configuration (2) Chapter 6 Notification Chapter 7 MRTG Authentication

4 Chapter 1 Network Monitoring Structure

5 Chapter 2 Basic Terminology 1.SNMP - Simple Network Management Protocol an application-layer protocol that facilitates the exchange of management information works between a network management system (NMS), agents, and managed devices. uses TCP/IP protocol suite. 2. Agent A network-management software module that resides in a managed device such as the Cisco IOS software has local knowledge of management information makes that information available by using SNMP. 3. NMS - Network Management System Run applications that monitor and control managed devices. provide resources required for network management. NMS applications such as MRTG, Cacti or Nagios. 4. Managed Device Contain an SNMP agent and reside on a managed network. Collect and store management information and make it available to NMS by using SNMP. Include Routers, Switches, Servers, Hosts, or Printers.

6 Chapter 3 Testing Environment 1.NMS MRTG (Multi Router Traffic Grapher) IP Address: OS: CentOS 6.4 Hostname: client.chul.com Need to install and start MRTG service with Web server 2. Managed Devices 1)Linux Server (CentOS 6.4) Need to install net-snmp package and start SNMPD 2)Windows Server Need to install snmp file and start SNMP service 3) Cisco Router - DHCP Configure snmp service and activate SNMP service

7 Chapter 4 Managed Devices 1. Linux Server a. Packages installation # yum install net-snmp-libs net-snmp net-snmp-utils b. File Configuration # vi /etc/snmp/snmpd.conf # sec.name source community com2sec local localhost jeong com2sec mynetwork /24 jeong # groupname securitymodel securityname group MyROGroup v1 mynetwork group MyROGroup v2c mynetwork # Make at least snmpwalk -v 1 localhost -c public system fast again. # name incl/excl subtree mask(optional) #view systemview included view all included.1 80 # Finally, grant the group read-only access to the systemview view. # group context sec.model sec.level prefix read write notif access MyROGroup "" any noauth exact all none none access MyRWGroup "" any noauth exact all all none # Check the / partition and make sure it contains at least 10 megs. disk / c. Service checking # service snmpd start # chkconfig snmpd on # ps ef grep snmpd ; netstat nau grep 161

8 Chapter 4 Managed Devices 2. Windows Server 2008 Install snmp files Start -> Administrative Tools -> Services -> SNMP Service > 1 2 Properties -> Security Add Community : jeong Add Hosts : (NMS IP) 3. Cisco Router and Switch router# config terminal router(config)# snmp-server contact tland12@gmail.com router(config)# access-list 5 permit router(config)# snmp-server community jeong RO 5 router(config)# snmp-server host jeong router(config)# int lo 0 router(config)# ip address router(config)# exit router(config)# snmp-server trap-source lo0 router(config)# snmp-server enable traps

9 Chapter 5 MRTG Configuration 1.MRTG Installation # yum install httpd php zlib libpng gd mrtg 2. Creating configuration files for each device # cfgmaker --global 'WorkDir: /var/www/mrtg' --output /etc/mrtg/mrtg.cfg jeong@ // Linux Server # cfgmaker --global 'WorkDir: /var/www/mrtg' --output /etc/mrtg/windows.cfg jeong@ // Windows Server #cfgmaker --global 'WorkDir: /var/www/mrtg' --output /etc/mrtg/router.cfg jeong@ // Router # vi mrtg.sh //shell script to execute MRTG using cfg files #!/bin/bash LOCK=/var/lock/mrtg/mrtg_l CONFCACHE=/var/lib/mrtg/mrtg.ok env LANG=C /usr/bin/mrtg /etc/mrtg/mrtg.cfg --lock-file $LOCK --confcache-file $CONFCACHE env LANG=C /usr/bin/mrtg /etc/mrtg/windows.cfg --lock-file $LOCK --confcache-file $CONFCACHE env LANG=C /usr/bin/mrtg /etc/mrtg/router.cfg --lock-file $LOCK --confcache-file $CONFCACHE # chmod 700 mrtg.sh

10 Chapter 5 MRTG Configuration 3. Editing cfg files for each Devices a. Editing 3 files for managed devices # vi mrtg.cfg windows.cfg router.cfg Target[eth0]: \eth0:public@ : SetEnv[eth0]: MRTG_INT_IP=" " MRTG_INT_DESCR="eth0" MaxBytes[eth0]: Title[eth0]: eth0 -- server.chul.com PageTop[eth0]: <h1>eth0 -- server.chul.com</h1> b. Executing shell script #./mrtg.sh # ls l /var/www/mrtg c. Creating index file # indexmaker output=/var/www/mrtg/index.html mrtg.cfg windows.cfg router.cfg d. Webserver reload # service httpd restart

11 Chapter 5 MRTG Configuration 4. Access Control for MRTG Access # vi /etc/httpd/conf.d/mrtg.conf Alias /mrtg /var/www/mrtg <Location /mrtg> Order deny,allow Deny from all Allow from /24 </Location> [root@centos ~]# service httpd reload 5. Crontab #vi /etc/cron.d/mrtg */5 * * * * root /root/mrtg.sh # service crond start # chkconfig crond on 6. Testing MRTG Graph

12 Chapter 6 Adding More Targets 1. CPU ## CPU Load Average ### Target[cpu]: & :jeong@ MaxBytes[cpu]: 100 Unscaled[cpu]: dwmy Options[cpu]: gauge, absolute, growright, noinfo, nopercent YLegend[cpu]: CPU Load(%) ShortLegend[cpu]: (%) LegendI[cpu]: 1 minute average LegendO[cpu]: 5 minute average Legend1[cpu]: 1 minute average(%) Legend2[cpu]: 5 minute average(%) Title[cpu]: CPU usage PageTop[cpu]: <H1>CPUusage</H1> ThreshMaxI[cpu]: 85 ThreshProgI[cpu]: /usr/local/sbin/notify.sh 2. Memory ### Memory Free #### Target[mem]: & :jeong@ MaxBytes1[mem]: MaxBytes2[mem]: LegendI[mem]: Real LegendO[mem]: Swap 3. Disk

13 Chapter 7 Notification 1. mrtg.cfg in /etc/mrtg a. Global section WorkDir: /var/www/mrtg ThreshDir: /var/run/mrtg b. Per each Target Target[cpu]: Options[cpu]: growright, nopercent, gauge ThreshMaxI[cpu]: 90 ThreshMinI[cpu]: 50 ThreshProgI[cpu]: /usr/local/sbin/notify.sh 2. Need to check SMTP working for notification 3. /usr/local/sbin/notify.sh #!/bin/sh echo -e "Device: $1\\nThreshold Value : $2\\nCurrent Value: $3\\nDate/Time : `date`\\n" mail -s "Threshold Alert: '$1' Passed $2 Threshold" tland12@gmail.com

14 Chapter 8 MRTG Authentication 1.Web server configuration # vi /etc/httpd/conf/httpd.conf <Directory /var/www/mrtg> AllowOverride FileInfo AuthConfig Limit Options MultiViews Indexes IncludesNoExec </Directory> # service httpd reload 2. Creating htaccess and htpasswd # vi /var/www/mrtg/.htaccess AuthName Cambodia Network Administrator AuthType Basic AuthUserFile /var/www/.htpasswd requre valid-user # htpasswd c /var/www/.htpasswd tland Passwd: 3. Authentication Testing

15 Monitoring Tool MRTG on CentOS 6.4 Summary 1. Network Monitoring Structure 2. How to setup Managed Devices Linux server, Windows Server and Cisco Router 3. How to setup MRTG as a monitoring tool 4. How to use MRTG Adding more target, notification MRTG Authentication

16 Monitoring Tool - MRTG on CentOS 6.4 Thank you & God bless you!! tland12.wordpress.com

securitymodel who securityname com2sec secname ipsource community default group groupname model secname v1 v2c usm

securitymodel who securityname com2sec secname ipsource community default group groupname model secname v1 v2c usm SNM ver. 1.7 SNMP v3 - p. 1/36 SNMP Version 3 More about and USM Nick Urbanik 2003, 2005 Copyright Conditions: Open Publication License (seehttp://www.opencontent.org/openpub/) Avoid

More information

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

Newton Linux User Group Graphing SNMP with Cacti and RRDtool Newton Linux User Group Graphing SNMP with Cacti and RRDtool Summary: Cacti is an interface that can be used to easily manage the graphing of SNMP data. These graphs allow you to visualize performance

More information

May 2002 16PZ-0502A-WWEN Prepared by: Internet & E-Commerce Solutions

May 2002 16PZ-0502A-WWEN Prepared by: Internet & E-Commerce Solutions May 2002 Prepared by: Internet & E-Commerce Solutions Contents Introduction... 3 Solution Overview... 3 Obtaining Compaq Management Agents (CMA) for Linux... 3 Integrating Compaq Management Agents MIBs

More information

IBM. IBM Cloud Automated Modular Managed (AMM) - monitoring services User Guide

IBM. IBM Cloud Automated Modular Managed (AMM) - monitoring services User Guide IBM Cloud Automated Modular Managed (AMM) - monitoring services User Guide Version 10082015 IBM Cloud Automated Modular Managed (AMM) - monitoring services User Guide IBM IBM Cloud Automated Modular Managed

More information

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 by SK Cacti is an open source, front-end for the data logging tool called RRDtool. It is a web based network monitoring

More information

Configuration des pré-requis Linux. Référence : 10202 Version N : 1 Créé le : 9 Janvier 2011. Créé par : Thibault Cuisy Téléphone : 0476705296

Configuration des pré-requis Linux. Référence : 10202 Version N : 1 Créé le : 9 Janvier 2011. Créé par : Thibault Cuisy Téléphone : 0476705296 Référence : 10202 Version N : 1 Créé le : 9 Janvier 2011 Créé par : Thibault Cuisy Téléphone : 0476705296 Sommaire 1. Objectif... 3 2. Debian, Ubuntu... 4 2.1. Installation de SNMP... 4 2.2. Configuration...

More information

QStar SNMP installation, configuration and testing. Contents. Introduction. Change History

QStar SNMP installation, configuration and testing. Contents. Introduction. Change History QStar SNMP installation, configuration and testing Change History Date Author Comments February 19, 2014 Slava Initial version March 1, 2014 Slava Update April 8, 2014 Vladas Trap destination configuration

More information

This watermark does not appear in the registered version - http://www.clicktoconvert.com. SNMP and OpenNMS. Part 1 SNMP.

This watermark does not appear in the registered version - http://www.clicktoconvert.com. SNMP and OpenNMS. Part 1 SNMP. SNMP and OpenNMS Part 1 SNMP Zeev Halevi Introduction Designed in 1987 by Internet Engineering Task Force (IETF) to send and receive management and status information across networks Most widely used network

More information

Advanced Server Monitoring Setup Guide

Advanced Server Monitoring Setup Guide Setup Guide This guide assumes you have already added Advanced Server Monitoring to your account and will take you through the Advanced Server Monitoring Control panel. Teach you how to set up the control

More information

Monitoring Cisco IOS Firewall Inspection Activity with Multi- Router Traffic Grapher (MRTG)

Monitoring Cisco IOS Firewall Inspection Activity with Multi- Router Traffic Grapher (MRTG) Monitoring Cisco IOS Firewall Inspection Activity with Multi- Router Traffic Grapher (MRTG) Introduction Cisco introduced support for the new Cisco Unified Firewall MIB in Cisco IOS Software Release 12.4(6)T.

More information

Network Monitoring. Dhruba Raj Bhandari (CCNA) Manager Systems Soaltee Crowne Plaza Kathmandu NEPAL bhandari.dhruba@scp.com.np

Network Monitoring. Dhruba Raj Bhandari (CCNA) Manager Systems Soaltee Crowne Plaza Kathmandu NEPAL bhandari.dhruba@scp.com.np Network Monitoring Dhruba Raj Bhandari (CCNA) Manager Systems Soaltee Crowne Plaza Kathmandu NEPAL bhandari.dhruba@scp.com.np Welcome! Network Management Workshop Network Monitoring Concepts, Tools And

More information

MRTG used for Basic Server Monitoring

MRTG used for Basic Server Monitoring MRTG used for Basic Server Monitoring SANS Institute Masters Presentation by T. Brian MRTG used for Basic Server Monitoring This presentation covers how-to instructions to establish basic server monitoring

More information

Helsinki University of Technology Department of Electrical and Communications Engineering Networking Laboratory

Helsinki University of Technology Department of Electrical and Communications Engineering Networking Laboratory Helsinki University of Technology Department of Electrical and Communications Engineering Networking Laboratory S-38.3133 - Networking Technology, laboratory course Spring 2007 Work number 32: SNMP Instructions,

More information

How To Monitor A Network With Snmp (Network Monitoring)

How To Monitor A Network With Snmp (Network Monitoring) Quo Vadis, SNMP? White Paper Part 2: Putting SNMP into practice Authors: Jens Rupp, Lead Developer at Paessler AG Daniel Zobel, Head of Software Development at Paessler AG Published: August 2010 Last Update:

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

KretchmarBook 2003/8/29 19:05 page 39 #51

KretchmarBook 2003/8/29 19:05 page 39 #51 KretchmarBook 2003/8/29 19:05 page 39 #51 Chapter 3 MRTG 3.1 Overview of MRTG MRTG is the Multi Router Traffic Grapher, a piece of free software released under the GNU General Public License. 1 It was

More information

網 路 品 質 管 理 工 具 The Dude 簡 介

網 路 品 質 管 理 工 具 The Dude 簡 介 網 路 品 質 管 理 工 具 The Dude 簡 介 報 告 人 : 游 子 興 Email:davisyou@ntu.edu.tw 電 話 :02-33665008 日 期 :2014/8/14 1 大 綱 The Dude 簡 介 網 路 與 伺 服 器 服 務 狀 態 偵 測 圖 表 製 作 與 應 用 各 種 服 務 偵 測 方 法 SNMP 相 關 設 定 異 常 通 知 與 設 定

More information

White Paper. Quo Vadis, SNMP? White Paper Part 2: Putting SNMP into practice

White Paper. Quo Vadis, SNMP? White Paper Part 2: Putting SNMP into practice Quo Vadis, SNMP? White Paper Part 2: Putting SNMP into practice Authors: Jens Rupp, Lead Developer at Paessler AG Daniel Zobel, Documentation and Support at Paessler AG Published: August 2010 Last Update:

More information

Using MRTG to Monitor I/O

Using MRTG to Monitor I/O PS Series Groups Using MRTG to Monitor I/O Abstract This Technical Report describes how to use Multi Router Traffic Grapher (MRTG) to monitor the I/O between servers and PS Series group members running

More information

Configuring Simple Network Management Protocol (SNMP)

Configuring Simple Network Management Protocol (SNMP) Configuring Simple Network Management Protocol (SNMP) This chapter describes the Simple Network Management Protocol (SNMP), SNMP Management Information Bases (MIBs), and how to configure SNMP on Cisco

More information

This configuration guide describes the installation process of SNMP on Windows and Linux with the NetBorder Express Gateway.

This configuration guide describes the installation process of SNMP on Windows and Linux with the NetBorder Express Gateway. Overview This configuration guide describes the installation process of SNMP on Windows and Linux with the NetBorder Express Gateway. The Simple Network Management Protocol (SNMP) is a UDP-based network

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

S-38.2131/3133 Networking Technology, laboratory course A/B

S-38.2131/3133 Networking Technology, laboratory course A/B A! Aalto University School of Electrical Engineering Department of Communications and Networking S-38.2131/3133 Networking Technology, laboratory course A/B Student edition Juha Järvinen, 5.1.2007 Matias

More information

SNMP, RMON, and Alarm Configuration

SNMP, RMON, and Alarm Configuration CHAPTER 6 This chapter contains information on the following system management topics: Simple Network Management Protocol, page 6-1 Remote Monitoring, page 6-4 Alarms, page 6-4 Simple Network Management

More information

System Management Software User s Manual

System Management Software User s Manual System Management Software User s Manual Checklist Disclaimer/Copyrights No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored

More information

MRTG / RRDTool. Network Management Workshop. June 2009 Papeete, French Polynesia

MRTG / RRDTool. Network Management Workshop. June 2009 Papeete, French Polynesia MRTG / RRDTool Network Management Workshop June 2009 Papeete, French Polynesia MRTG The Multi Router Traffic Grapher (MRTG) is a tool to monitor the traffic load on network-links. MRTG generates HTML pages

More information

Network Monitoring Tools

Network Monitoring Tools Network Monitoring Tools (Nagios, MRTG) CSD Fall 2010 Version: 1.3 Identifier: ISP-003 Project owners Björn Pehrson Sven Jonsson Amos Nungu Project coach Hans Eriksson Team members Contact ECTS credits

More information

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center SVNManager Installation Documentation M. Verkerk Department of Public Health Erasmus MC University Medical Center Page 2 July 2005 Preface Version control in the context of this document is all about keeping

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

Simple Network Management Protocol

Simple Network Management Protocol CS 556 - Networks II Internet Teaching Lab (MCS B-24) Simple Network Mgmt Protocol (SNMP) Simple Network Management Protocol What you will learn in this lab: Details of the SNMP protocol. Contents of a

More information

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System

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

More information

Simple Network Management Protocol

Simple Network Management Protocol Simple Network Management Protocol This document describes how to configure the Simple Network Management Protocol (SNMP). This document consists of these sections: Understanding SNMP, page 1 Configuring

More information

Configuring SNMP. 2012 Cisco and/or its affiliates. All rights reserved. 1

Configuring SNMP. 2012 Cisco and/or its affiliates. All rights reserved. 1 Configuring SNMP 2012 Cisco and/or its affiliates. All rights reserved. 1 The Simple Network Management Protocol (SNMP) is part of TCP/IP as defined by the IETF. It is used by network management systems

More information

How to simulate network devices using the Verax SNMP Simulator (Linux/Windows)

How to simulate network devices using the Verax SNMP Simulator (Linux/Windows) How to simulate network devices using the Verax SNMP Simulator (Linux/Windows) Table of contents Abstract... 3 1. Verax SNMP Simulator installation... 4 2. Extracting SNMP record files from a physical

More information

Multi-Router Traffic Grapher (MRTG)

Multi-Router Traffic Grapher (MRTG) Multi-Router Traffic Grapher (MRTG) MULTI-ROUTER TRAFFIC GRAPHER (MRTG)... 1 Overview... 1 Installing MRTG... 1 Viewing the Results... 10 Notes... 13 Troubleshooting... 13 Document Revision History...

More information

Monitoring disk stats with Cacti

Monitoring disk stats with Cacti Monitoring disk stats with Cacti February 13, 2013 Contents 1 Disk space utilisation 1 1.1 hrstoragetable (.1.3.6.1.2.1.25.2.3)................. 2 1.2 dsktable (.1.3.6.1.4.1.2021.9)....................

More information

Configuring SNMP and using the NetFlow MIB to Monitor NetFlow Data

Configuring SNMP and using the NetFlow MIB to Monitor NetFlow Data Configuring SNMP and using the NetFlow MIB to Monitor NetFlow Data NetFlow is a technology that provides highly granular per-flow statistics on traffic in a Cisco router. The NetFlow MIB feature provides

More information

Using SNMP with Content Gateway (not V-Series)

Using SNMP with Content Gateway (not V-Series) Using SNMP with Content Gateway (not V-Series) Topic 60035 / Updated: 9-May-2011 Applies To: Websense Web Security Gateway 7.6.x Websense Web Security Gateway Anywhere 7.6.x Websense Content Gateway 7.6.x

More information

Network Monitoring Systems / Nagios. 2/19/08 Michael Miller e mail: mike.mikemiller@gmail.com

Network Monitoring Systems / Nagios. 2/19/08 Michael Miller e mail: mike.mikemiller@gmail.com Network Monitoring Systems / Nagios 2/19/08 Michael Miller e mail: mike.mikemiller@gmail.com Network Monitoring System What is a Network Monitoring System ( NMS ) What types of devices can you monitor?

More information

A Guide to Understanding SNMP

A Guide to Understanding SNMP A Guide to Understanding SNMP Read about SNMP v1, v2c & v3 and Learn How to Configure SNMP on Cisco Routers 2013, SolarWinds Worldwide, LLC. All rights reserved. Share: In small networks with only a few

More information

CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system

CC ICT-SUD. Setting up and integrate Apache, MySQL and PHP on a Linux system LAMP CC ICT-SUD Setting up and integrate Apache, MySQL and PHP on a Linux system Installation Simple Alternative (for development/testing only): Xampp I will assume MySQL is already installed and configured

More information

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors) Rancid Server Build and Operation Overview (v0.3) (This is being from memory so expect some errors) Installation The installation will cover the setup and configuration of a RANCID server using CentOS

More information

How To Run Nrpe On Nagios On Windows 7.5 (Windows) On A Linux Computer On A Windows 7 (Windows 7) On An Ubuntu Computer On An Ipad Or Ipad (Windows 8) On Your Pc

How To Run Nrpe On Nagios On Windows 7.5 (Windows) On A Linux Computer On A Windows 7 (Windows 7) On An Ubuntu Computer On An Ipad Or Ipad (Windows 8) On Your Pc Server Monitoring Contents Ganglia... 1 Nagios...3 Open Computer and Software Inventory Next Generation...8 Ganglia Ganglia is a web based program developed by Berkeley University designed to monitor machine

More information

TEIN2 Measurement and Monitoring Workshop Passive Measurements. Bruce.Morgan@aarnet.edu.au

TEIN2 Measurement and Monitoring Workshop Passive Measurements. Bruce.Morgan@aarnet.edu.au TEIN2 Measurement and Monitoring Workshop Passive Measurements Bruce.Morgan@aarnet.edu.au Passive Measurements Syslog SNMP Syslog Syslog is a means where messages originating on a device are logged Normally

More information

Installation and User Guide. for. Intel Server Management (ISM) Ver. 5.5.7

Installation and User Guide. for. Intel Server Management (ISM) Ver. 5.5.7 Installation and User Guide for Intel Server Management (ISM) Ver. 5.5.7 Legal Information Information in this document is provided in connection with Intel products. No license, express or implied, by

More information

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

Apache & Virtual Hosts & mod_rewrite

Apache & Virtual Hosts & mod_rewrite Apache & Virtual Hosts & mod_rewrite Jonathan Brewer Network Startup Resource Center jon@nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license

More information

Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4

Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4 Setup Local Mail Server Using Postfix, Dovecot And Squirrelmail On CentOS 6.5/6.4 For this tutorial, I use CentOS 6.5 32 bit minimal installation, with SELinux disabled. My test box details are given below.

More information

SNMP Monitoring. The Sequel by Manuel Deschambault. Support Tool Architect Symbiotic System Design

SNMP Monitoring. The Sequel by Manuel Deschambault. Support Tool Architect Symbiotic System Design SNMP Monitoring The Sequel by Manuel Deschambault Support Tool Architect Symbiotic System Design How many repeat offenders? 2 What group do you belong to?! 1- What the @#$^#$& is SNMP?! 2- I know what

More information

Network Monitoring & Management Introduction to SNMP

Network Monitoring & Management Introduction to SNMP Network Monitoring & Management Introduction to SNMP Mike Jager Network Startup Resource Center mike.jager@synack.co.nz These materials are licensed under the Creative Commons Attribution-NonCommercial

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

Oracle, the Oracle logo, Java, and MySQL are registered trademarks of the Oracle Corporation and/or its affiliates.

Oracle, the Oracle logo, Java, and MySQL are registered trademarks of the Oracle Corporation and/or its affiliates. Zenoss Service Dynamics Resource Management Installation Copyright 2012 Zenoss, Inc., 275 West St. Suite 204, Annapolis, MD 21401, U.S.A. All rights reserved. Zenoss and the Zenoss logo are trademarks

More information

A SURVEY ON AUTOMATED SERVER MONITORING

A SURVEY ON AUTOMATED SERVER MONITORING A SURVEY ON AUTOMATED SERVER MONITORING S.Priscilla Florence Persis B.Tech IT III year SNS College of Engineering,Coimbatore. priscillapersis@gmail.com Abstract This paper covers the automatic way of server

More information

Demystifying SNMP. TruePath Technologies Inc 10/5/2015 2:11:14 PM Version 1.db. p.1

Demystifying SNMP. TruePath Technologies Inc 10/5/2015 2:11:14 PM Version 1.db. p.1 Demystifying SNMP p.1 Who is? US based, leading edge IT software and services company that specializes in in-house services for new or existing IT monitoring software. We offer software with an easy to

More information

The current version installed on your server is 2.6.32-431.5.1.el6.x86_64 and it's the latest available.

The current version installed on your server is 2.6.32-431.5.1.el6.x86_64 and it's the latest available. IP : nnn.nnn.nnn.n 173.255.141.4 Hostname : example.domain.com webserver.theewfinc.org OS : CentOS release 6.6 (Final) The following is a report on the security and performance of your server. It includes

More information

SNMP and MRTG Monitoring. SNMP and MRTG Monitoring. Introduction. Start. 1 de 9 07/06/2013 10:33. Contents

SNMP and MRTG Monitoring. SNMP and MRTG Monitoring. Introduction. Start. 1 de 9 07/06/2013 10:33. Contents 1 de 9 07/06/2013 10:33 Log in / create account Navigation Main Page Community portal Current events Recent changes Random page Help Search the Wiki SNMP and MRTG Monitoring Contents 1 SNMP and MRTG Monitoring

More information

Management, Logging and Troubleshooting

Management, Logging and Troubleshooting CHAPTER 15 This chapter describes the following: SNMP Configuration System Logging SNMP Configuration Cisco NAC Guest Server supports management applications monitoring the system over SNMP (Simple Network

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

MINIMUM INSTALLATION REQUIREMENTS Processor: RAM: Hard disk: Operating system: Others: Pentium 200 MHz. 64 MB. 80 MB free space. One of the following: Red Hat (version 7.0, 7.1, 7.2, 7.3, 8.0, 9 or Enterprise

More information

Install and configure the Net- SNMP agent for Windows

Install and configure the Net- SNMP agent for Windows Install and configure the Net- SNMP agent for Windows Version 0.2 (03/06/2008) : added a note about snmpd.conf file creation Version 0.1 (03/04/2008) : intial release This HowTo will explain how to install

More information

Setting Up A Nagios Monitoring System Warren Block, May 2005

Setting Up A Nagios Monitoring System Warren Block, May 2005 Setting Up A Nagios Monitoring System Warren Block, May 2005 What Is Nagios? NAGIOS (na gee ose) is a system that will monitor the status of other network computers or components. It can watch your network

More information

Oracle Enterprise Manager. Description. Versions Supported. Prerequisites

Oracle Enterprise Manager. Description. Versions Supported. Prerequisites Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Check Point Firewall 10g Release 2 (10.2) B28038-01 January 2006 This document provides a brief description about the Oracle System

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

Network Monitoring and Management Recommendations Best Practice Document

Network Monitoring and Management Recommendations Best Practice Document Network Monitoring and Management Recommendations Best Practice Document Produced by AMRES led working group on network monitoring (AMRES BPD 101) Authors: Esad Saitović and Ivan Ivanović February 2011

More information

Network Management & Monitoring Introduction to SNMP

Network Management & Monitoring Introduction to SNMP Network Management & Monitoring Introduction to SNMP Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license

More information

Monitoring Clearswift Gateways with SCOM

Monitoring Clearswift Gateways with SCOM Technical Guide Version 01 28/11/2014 Documentation Information File Name Document Author Document Filename Monitoring the gateways with _v1.docx Iván Blesa Monitoring the gateways with _v1.docx Issue

More information

Technical Notes P/N 302-000-337 Rev 01

Technical Notes P/N 302-000-337 Rev 01 SNMP Trap Monitoring Solution EMC SourceOne Version 7.0 and later Technical Notes P/N 302-000-337 Rev 01 September 27, 2013 These technical notes contain supplemental information about EMC SourceOne, version

More information

GestióIP IPAM v3.0 IP address management software Installation Guide v0.1 www.gestioip.net

GestióIP IPAM v3.0 IP address management software Installation Guide v0.1 www.gestioip.net GestióIP IPAM v3.0 IP address management software Installation Guide v0.1 www.gestioip.net GestióIP Copyright Marc Uebel 2011 Table of Contents 1 Introduction... 3 2 Requirements... 3 3 Installation...

More information

Administering the Network Analysis Module. Cisco IOS Software. Logging In to the NAM with Cisco IOS Software CHAPTER

Administering the Network Analysis Module. Cisco IOS Software. Logging In to the NAM with Cisco IOS Software CHAPTER CHAPTER 4 How you administer the NAM on your Catalyst 6500 series switch or Cisco 7600 series router depends on whether you are using the Cisco IOS software or the Catalyst operating system software. Several

More information

While are you still in Nagios working directory, create a new file for DNS servers monitoring

While are you still in Nagios working directory, create a new file for DNS servers monitoring NAGIOS MONITORING ----------------- On AUTH1 server 1. Go to Nagios working directory $ cd /usr/local/etc/nagios 2. Copy Nagios sample files To do this, make sure you are in Nagios working directory from

More information

Web Server using Apache. Heng Sovannarith heng_sovannarith@yahoo.com

Web Server using Apache. Heng Sovannarith heng_sovannarith@yahoo.com Web Server using Apache Heng Sovannarith heng_sovannarith@yahoo.com Introduction The term web server can refer to either the hardware (the computer) or the software (the computer application) that helps

More information

Network Management & Monitoring

Network Management & Monitoring Network Management & Monitoring Smokeping - Part I Contents 0.1 Exercises............................... 1 0.2 1. Install Smokeping......................... 1 0.3 2. Initial Configuration........................

More information

Wordpress Security. A guide on how to not get hacked when using wordpress. David Kennedy (ReL1K) http://www.secmaniac.com Twitter: Dave_ReL1K

Wordpress Security. A guide on how to not get hacked when using wordpress. David Kennedy (ReL1K) http://www.secmaniac.com Twitter: Dave_ReL1K Wordpress Security A guide on how to not get hacked when using wordpress. David Kennedy (ReL1K) http://www.secmaniac.com Twitter: Dave_ReL1K So about wordpress. The number one website and blogging software

More information

Application Note. Cacti monitoring. Document version: v1.0 Last update: 8th November 2013

Application Note. Cacti monitoring. Document version: v1.0 Last update: 8th November 2013 Application Note Document version: v1.0 Last update: 8th November 2013 Purpose Monitor your ALOHA Load-Balancer with Cacti Complexity Versions concerned Aloha 4.2 and above Changelog 2013-10-03: Initial

More information

GroundWork Monitor Community Edition 5.2.1 Install Guide VMware Virtual Appliance

GroundWork Monitor Community Edition 5.2.1 Install Guide VMware Virtual Appliance GroundWork Monitor Community Edition is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version

More information

NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks...

NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... Copyright (c) 1999-2007 Ethan Galstad Last Updated: May 1, 2007 CONTENTS Section 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... 3. Installation...

More information

SyAM Software Management Utilities. Creating Templates

SyAM Software Management Utilities. Creating Templates SyAM Software Management Utilities Creating Templates Step 1: Setting Up Folder Paths The Management Utilities utilize a server share to perform centralized network deployment of applications and patches.

More information

SNMP in Cisco IOS. The minimum you should know

SNMP in Cisco IOS. The minimum you should know The minimum you should know SNMP Framework Manager Agent MIB i.e. Cisco Works (or better something that really works) Software component on managed device Collection of objects/variables a manager can

More information

Managing and Monitoring Network Management Features

Managing and Monitoring Network Management Features Managing and Monitoring Network Management Features This feature module describes how to monitor, manage and deploy a variety of network management features, including Cisco Active Network Abstraction

More information

CloudLinux is a proven solution for shared hosting providers that:

CloudLinux is a proven solution for shared hosting providers that: CloudLinux Overview What is CloudLinux CloudLinux is a proven solution for shared hosting providers that: Improves server s stability and security Increases density Improves performance Decreases support

More information

The Subversion move/migrate from one server to another, shall be divided into 3 steps: Backup Create Import

The Subversion move/migrate from one server to another, shall be divided into 3 steps: Backup Create Import = Howto Move a Subversion Repository from One Server to Another = Recently I had to move a subversion (svn) repository to another or lets say new server. I needed to upgrade the servers hardware and software,

More information

Monitoring a Linux Mail Server

Monitoring a Linux Mail Server Monitoring a Linux Mail Server Mike Weber mweber@spidertools.com] Various Methods to Monitor Mail Server Public Ports SMTP on Port 25 POPS on Port 995 IMAPS on Port 993 SNMP Amavis on Port 10024 Reinjection

More information

Installing Apache Software

Installing Apache Software Web Server Web Server Is a software application that uses the HyperText Transfer Protocol. Running on computer connected to Internet. Many Web Server software applications: Public domain software from

More information

Linux System Administration on Red Hat

Linux System Administration on Red Hat Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,

More information

CRMS SNMP Software Overview

CRMS SNMP Software Overview Document Revision 0.5 April 23, 2010 Kontron America, Inc. Revision History Date Rev Author Modifications 01/21/08 0.1 A. Cress Initial draft, including detail for net-snmp, snmpsa-ah and snmpsa Linux

More information

Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization

Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization Michael Heldebrant Solutions Architect, Red Hat Outline Authentication overview Basic LDAP

More information

It should be noted that the installer will delete any existing partitions on your disk in order to install the software required to use BLËSK.

It should be noted that the installer will delete any existing partitions on your disk in order to install the software required to use BLËSK. Installation Guide Introduction... 3 1. Booting from the CD... 4 2. Choose the server type to install... 5 3. Disk formatting and installation... 6 4. Confirmation of disk formatting... 7 5. Program installation...

More information

Introduction to Operating Systems

Introduction to Operating Systems Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these

More information

OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER

OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER OPENPROJECT INSTALL ON CENTOS 7 RUNNING IN VMWARE PLAYER 2014 Aug Abstract An and to end step by step installation instruction set for OpenProject running on Centos 7 under VMWare player Brendan Dunn Installing

More information

Web Hosting for Fame and Fortune. A Guide to using Apache as your web-server solution

Web Hosting for Fame and Fortune. A Guide to using Apache as your web-server solution Web Hosting for Fame and Fortune A Guide to using Apache as your web-server solution Why use Apache? n Extremely portable n Completely Open Source n Proven track-record n Most popular web server on the

More information

White Paper. Fabasoft on Linux Performance Monitoring via SNMP. Fabasoft Folio 2015 Update Rollup 2

White Paper. Fabasoft on Linux Performance Monitoring via SNMP. Fabasoft Folio 2015 Update Rollup 2 White Paper Fabasoft Folio 2015 Update Rollup 2 Copyright Fabasoft R&D GmbH, Linz, Austria, 2015. All rights reserved. All hardware and software names used are registered trade names and/or registered

More information

Using Cacti To Graph MySQL s Metrics

Using Cacti To Graph MySQL s Metrics Using Cacti To Graph MySQL s Metrics Kenny Gryp kenny.gryp@percona.com Principal Consultant @ Percona Collaborate 2011 1 Percona MySQL/LAMP Consulting MySQL Support Percona Server (XtraDB) Percona XtraBackup

More information

This section describes how to set up, find and delete community strings.

This section describes how to set up, find and delete community strings. SNMP V1/V2c setup SNMP community strings, page 1 SNMP notification destinations, page 4 SNMP community strings Set up community string This section describes how to set up, find and delete community strings.

More information

Linux Administrator (Advance)

Linux Administrator (Advance) Linux Administrator (Advance) Mr.Kriangsak Namkot Trainer & Director Jodoi IT&Service Co.,Ltd. jodoi@jodoi.com jodoi1819@hotmail.com http://www.jodoi.com Linux Admin II Day 2 9:00 น. -12.00 น. - Mail Server

More information

Parallels Plesk Panel

Parallels Plesk Panel Parallels Plesk Panel Copyright Notice Parallels Holdings, Ltd. c/o Parallels International GMbH Vordergasse 49 CH8200 Schaffhausen Switzerland Phone: +41 526320 411 Fax: +41 52672 2010 Copyright 1999-2011

More information

MONITORING EMC GREENPLUM DCA WITH NAGIOS

MONITORING EMC GREENPLUM DCA WITH NAGIOS White Paper MONITORING EMC GREENPLUM DCA WITH NAGIOS EMC Greenplum Data Computing Appliance, EMC DCA Nagios Plug-In, Monitor DCA hardware components Monitor DCA database and Hadoop services View full DCA

More information

Connecting to the Firewall Services Module and Managing the Configuration

Connecting to the Firewall Services Module and Managing the Configuration CHAPTER 3 Connecting to the Firewall Services Module and This chapter describes how to access the command-line interface and work with the configuration. This chapter includes the following sections: Connecting

More information

Oracle Enterprise Manager. Description. Platforms Supported. Versions Supported

Oracle Enterprise Manager. Description. Platforms Supported. Versions Supported Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Check Point Firewall 10g Release 2 (10.2) B28038-02 May 2007 This document provides a brief description about the Oracle System

More information

Monitoring Network Services with Linux. SHARE 107 Session 9270 Richard Smrcina VM Assist, Inc. August 14, 2006

Monitoring Network Services with Linux. SHARE 107 Session 9270 Richard Smrcina VM Assist, Inc. August 14, 2006 Monitoring Network Services with Linux SHARE 107 Session 9270 Richard Smrcina VM Assist, Inc. August 14, 2006 Presentation softcopy http://www.vmassist.com/rs_samples/hobbitmon_share107.zip Agenda Why

More information

Implementation of escan Live Events with SYSLOG (CACTI)

Implementation of escan Live Events with SYSLOG (CACTI) Implementation of escan Live Events with SYSLOG (CACTI) Enterprise customers, implement NMS (Network Management Servers) to get the status of devices like Routers, Switches, printers etc. So whenever a

More information