SlideShare une entreprise Scribd logo
1  sur  41
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
(SA103) 
Ray Bilyk, Lotus Notes Administrator 
Dr. Tom Bilan, Director of Technical Services - IHI, LCE and BLD 
Ilitch Holdings, Inc.
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Ray Bilyk 
• Notes Administrator at Ilitch Holdings, Inc. 
• 
• Member of the Month, SocialBizUG.org 
• Silver Medal, National Homebrew Competition 
• http://www.thepridelands.com 
Dr. Tom Bilan 
• Director of Technical Services at Ilitch Holdings, Inc. 
• https://www.linkedin.com/in/bilan
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP
Outline 
• Overview of presentation 
• Abstract 
• Overview of Domino monitoring capabilities 
• Backstory 
• SNMP Basics 
• SNMP Support in Domino 
• SNMP command-line 
• Other examples
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
ABSTRACT: 
It's important as an IBM Domino administrator to get metrics on 
your servers so that you know what's going on in your 
"Brewhouse". There are also many ways to obtain this very 
valuable information, like 3rd party tools and even the IBM 
Domino Administrator client. What many don't know is that there 
is also another way to capture this very valuable information. 
SNMP (Simple Network Management Protocol) is an Internet-standard 
protocol for managing devices on IP networks. 
In this session, you will learn more about it, what it can give you, 
how to set it up, and ways to 'drink in' or monitor the information. 
With proper configuration, administrators not familiar with IBM 
Domino can obtain and use key IBM Domino server metrics. 
Homebrew your own metrics by attending this session!
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Existing Domino Monitoring Options 
• Traditional Monitoring 
– Monitoring Configuration database (EVENTS4.NSF) 
– Statistics Reports database (STATREP.NSF) 
• Domino Domain Monitoring (DDM) 
• Domino Administrator client 
• 3rd Party Tools
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
The Backstory
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
What is SNMP? 
It’s not Simple (until you understand it) 
It’s not just for Networks 
It’s for Management 
It’s a Protocol 
It’s an industry standard communication protocol for talking 
to devices that are connected to networks. If a device 
says it’s manageable it likely has SNMP capabilities.
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
How can SNMP help you? 
SNMP can be used to measure something immediately or 
over time so that you can make better decisions. 
SNMP traps can be sent to alert you of an event (i.e. drive 
failure). 
SNMP can be used to measure and then set thresholds that 
trigger alerts.
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
How can SNMP help you? cont 
SNMP is an enabler that allows visibility into real information so you’re not guessing. 
SNMP can answer questions like: 
– Do we need more phone lines? 
– Do we need more Internet bandwidth? 
– Why is my storage running slow? 
• Is it CPU? Memory? Disk I/O? Network?????? 
– Am I going to run out of disk space 3 months from now? 
– What was going on 20 minutes ago when everyone said the 
network was running slow? 
– Do I have a POS system that is getting hard drive errors and will 
probably die 3 weeks from now? 
– What temperature was it in the data center at 4 am 3 weeks 
ago? 
– How many mail messages are in the queue?
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Why use SNMP instead of a special 
tool? 
SNMP provides a common interface to get management 
information for the thousands of different devices made 
by thousands of vendors. 
Each product may have it’s own management program but 
what if you want a dashboard with many different 
devices on one web page? 
Once you master SNMP every device looks the same. (In 
other words, all metric collection problems look like nails 
so SNMP is the metaphorical hammer) 
It’s a standard and there are MANY free tools
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
The Lingo 
MIB – Management Information Base – A vendor provided 
file that explains what SNMP functionality they support. 
OID – Object Identifier – This is a specific variable that you 
can get or set on a device. 
MIB Namespace – A hierarchy that explains how an OID is 
determined. (picture coming in a few slides) 
Community – Password (RO = read-only, RW=read-write)
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
The Lingo Cont. 
Get – Asking the device for a value 
Set – Changing a value in a device 
Trap – A device sending out an alert 
Manager – Your PC 
Agent – The device you’re monitoring
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
MIB
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
MIB Namespace
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Data Types
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
What you need to use SNMP 
The bare minimum to get started: 
– A SNMP querying program 
– IP address of the device 
– Community name 
– The OID 
Extras: 
– Device MIBs (yes… you don’t need MIBs to 
query a device) 
– A cool GUI 
– SNMP Trap receiver
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Examples
Domino MIB Example 
lnWaitingMail OBJECT-TYPE --<< INT mail.waiting 
SYNTAX INTEGER (0..2147483647) 
ACCESS read-only 
STATUS optional 
DESCRIPTION 
"Number of mail messages waiting to be routed." 
::= { lnMail 6 } 
lnDeadMail OBJECT-TYPE --<< INT mail.dead 
SYNTAX INTEGER (0..2147483647) 
ACCESS read-only 
STATUS optional 
DESCRIPTION 
"Number of dead (undeliverable) mail messages." 
::= { lnMail 1 }
SNMP MIB Example –Writeable 
lnRemoteReboot OBJECT-TYPE 
SYNTAX INTEGER { 
no(1), 
yes(2) 
} 
ACCESS read-write 
STATUS mandatory 
DESCRIPTION 
"Set to 'yes' to reboot the entire system. 
This value will be returned as 'yes' if the 
system is in 
the process of rebooting but hasn't come down 
yet." 
::= { lnControl 5 }
Domino SNMP Query Example 
H:>snmpwalk -Of -v2c -c mwlug -m ALL 172.16.0.37 lnServerCPUCount 
.iso.org.dod.internet.private.enterprises.lotus.notes.lnInfo.lnStats.lnServer 
.lnServerInfo.lnServerCPUCount.0 = INTEGER: 4 
H:>snmpwalk -On -v2c -c mwlug -m ALL 172.16.0.37 lnServerCPUCount 
.1.3.6.1.4.1.334.72.1.1.6.2.12.0 = INTEGER: 4 
H:>snmpwalk -v2c -c mwlug -m ALL 172.16.0.37 lnServerCPUCount 
NOTES-MIB::lnServerCPUCount.0 = INTEGER: 4 
H:>snmptranslate -Td -m NOTES-MIB .1.3.6.1.4.1.334.72.1.1.6.2.12.0 
NOTES-MIB::lnServerCPUCount.0 
lnServerCPUCount OBJECT-TYPE 
-- FROM NOTES-MIB 
SYNTAX INTEGER (0..2147483647) 
MAX-ACCESS read-only 
STATUS optional 
DESCRIPTION "The number of processors installed on this server." 
::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) lotus(334) 
notes(72) lnInfo(1) lnStats(1) lnServer(6) lnServerInf 
o(2) lnServerCPUCount(12) 0 }
Monitoring Script 
H:>copy con watchsnmp.bat 
@echo off 
snmpwalk -v2c -c mwlug -m ALL 172.16.0.37 %1 
watchsnmp.bat %1 
^Z 
1 file(s) copied. 
H:>watchsnmp.bat lnWaitingMail 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 3 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 3 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 5 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 5 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 
NOTES-MIB::lnWaitingMail.0 = INTEGER: 2 
^CTerminate batch job (Y/N)? y
Monitoring Script 
H:>watchsnmp.bat lnserveravailabilityindex 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 38 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 38 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 38 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 
NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 
^CTerminate batch job (Y/N)? y
Graphing - lnWaitingMail
SNMP Table Example
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Setting up Domino for SNMP 
http://www-01.ibm.com/support/docview.wss?uid=swg21169283 
or IBM Domino Administrator 9.0.1 Social Edition Help 
Look for “Configuring the Domino SNMP Agent” (OS specific steps) 
Steps for setup on Windows OS 
1. Configure SNMP at the Windows operating system level 
– Go to Start --> Settings --> Control Panel --> Add/Remove Programs. 
– Select "Add/Remove Windows Components" on the left. 
– Choose "Management and Monitoring Tools" and click "Details". 
– Select all under "Management..." 
– Reboot the operating system 
2. Start Domino
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Setting up Domino for SNMP (continued) 
3. Configure the Domino LNSNMP agent to run as a service: 
– Run the following commands in the Domino program directory. 
First stop the service if it is already running - in a DOS prompt run commands : 
c:Lotusdominonet stop lnsnmp 
c:Lotusdominonet stop snmp 
NOTE: If the service is not already running you may see the error: 
System error 1060 has occurred. 
The specified service does not exist as an installed service. 
c:LotusdominoLNSNMP -Sc ( this command is case sensitive ) 
If it starts you will see : 
Service creation complete
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Setting up Domino for SNMP (continued) 
3. Continued 
– More commands to run… 
c:Lotusdominonet start snmp 
c:Lotusdominonet start lnsnmp 
If it starts you will see: 
The Lotus Domino SNMP Agent service was started successfully. 
(NOTE: SNMP console appears on server machine) 
4. Run these commands on Domino server console 
load quryset 
load intrcpt (for SNMP traps) 
load collect 
5. Add quryset and/or intrcpt and collect to ServerTasks (NOTES.INI)
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Barracuda Web Filter MIB 
Barracuda-SPYWARE DEFINITIONS ::=BEGIN 
IMPORTS 
MODULE-IDENTITY, OBJECT-TYPE, INTEGER 
FROM SNMPv2-SMI 
barracuda 
FROM Barracuda-REF; 
bspyware MODULE-IDENTITY 
LAST-UPDATED "201011040000Z" 
ORGANIZATION "Barracuda Networks, Inc." 
CONTACT-INFO 
" 
Barracuda Networks Inc. 
3175 S. Winchester Blvd. 
Campbell, CA 95008 
" 
DESCRIPTION 
" 
Barracuda Web Filter MIB. 
Provides: 
Objects: 
* 1.3.6.1.4.1.20632.3.1.2 -- ActiveTCPConnections 
* 1.3.6.1.4.1.20632.3.1.3 -- Throughput 
* 1.3.6.1.4.1.20632.3.1.4 -- PolicyBlocks 
* 1.3.6.1.4.1.20632.3.1.5 -- SpywareWebHitBlocks 
* 1.3.6.1.4.1.20632.3.1.6 -- SpywareDownloadBlock 
* 1.3.6.1.4.1.20632.3.1.7 -- VirusDownloadBlock 
* 1.3.6.1.4.1.20632.3.1.8 -- SpywareProtocolBlocks 
* 1.3.6.1.4.1.20632.3.1.9 -- HTTPTrafficAllowed
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Example – Barracuda Output
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Server Room Humidity
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
NetApp CPU Usage
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Voice Channel Usage – Multiple Sources
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Fox Internet Traffic 
XO & AT&T – 24 hours
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Fox Internet Traffic - Monthly
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Port Errors
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Network Dashboard
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Thresholds and Alerting
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Troubleshooting 
A few quick things to check if you have problems talking to devices: 
– Double-check the community (case counts… it’s a 
password) 
– Double-check the IP address (ping it) 
– Double-check that SNMP is Enabled on the device 
(often it’s disabled by default) 
– Double-check that there isn’t any restrictions from 
where the device accepts SNMP packets from 
– Double-check the SNMP version. Version 1 or 2c are 
the most common and compatible. Version 3 uses 
advanced authentication and may be overkill so stick 
with 1 or 2c.
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Free Tools (almost better than free beer!) 
Net-SNMP http://www.net-snmp.org/ 
Cacti http://www.cacti.net/ 
Manageengine MIBBrowser http://www.manageengine.com/ 
Domino MIB (domino.mib) is located in Domino program directory
Homebrew your own Metrics: 
An IBM Domino Administrator's Guide to SNMP 
Questions?

Contenu connexe

Similaire à Homebrew Your Own Metrics - An IBM Domino Administrator's Guide to SNMP (MWLUG 2014 Session SA103)

SNMP Demystified Part-II
SNMP Demystified Part-IISNMP Demystified Part-II
SNMP Demystified Part-IIManageEngine
 
AdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWare
AdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWareAdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWare
AdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWareChristoph Adler
 
OSMC 2012 | Shinken by Jean Gabès
OSMC 2012 | Shinken by Jean GabèsOSMC 2012 | Shinken by Jean Gabès
OSMC 2012 | Shinken by Jean GabèsNETWAYS
 
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...Sharon James
 
IBM Domino / IBM Notes Performance Tuning
IBM Domino / IBM Notes Performance Tuning IBM Domino / IBM Notes Performance Tuning
IBM Domino / IBM Notes Performance Tuning Vladislav Tatarincev
 
OSMC 2009 | net-snmp: The forgotten classic by Dr. Michael Schwartzkopff
OSMC 2009 | net-snmp: The forgotten classic by Dr. Michael SchwartzkopffOSMC 2009 | net-snmp: The forgotten classic by Dr. Michael Schwartzkopff
OSMC 2009 | net-snmp: The forgotten classic by Dr. Michael SchwartzkopffNETWAYS
 
DNUG Webcast: IBM Notes V10 Performance Boost
DNUG Webcast: IBM Notes V10 Performance BoostDNUG Webcast: IBM Notes V10 Performance Boost
DNUG Webcast: IBM Notes V10 Performance BoostChristoph Adler
 
AdminCamp 2018 - IBM Notes V10 Performance Boost
AdminCamp 2018 - IBM Notes V10 Performance BoostAdminCamp 2018 - IBM Notes V10 Performance Boost
AdminCamp 2018 - IBM Notes V10 Performance BoostChristoph Adler
 
High Availability Architecture for Legacy Stuff - a 10.000 feet overview
High Availability Architecture for Legacy Stuff - a 10.000 feet overviewHigh Availability Architecture for Legacy Stuff - a 10.000 feet overview
High Availability Architecture for Legacy Stuff - a 10.000 feet overviewMarco Amado
 
Wsadminlib.wasug.2011 0125-0726
Wsadminlib.wasug.2011 0125-0726Wsadminlib.wasug.2011 0125-0726
Wsadminlib.wasug.2011 0125-0726Rohit Kelapure
 
Puppet ENC – a ServiceNow Scoped Application; Richard Romanus
Puppet ENC – a ServiceNow Scoped Application; Richard RomanusPuppet ENC – a ServiceNow Scoped Application; Richard Romanus
Puppet ENC – a ServiceNow Scoped Application; Richard RomanusPuppet
 
Interview questions
Interview questionsInterview questions
Interview questionsxavier john
 
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAn Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAbhishek Kumar
 
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...Christoph Adler
 
Week 4 B IP Subnetting Lab Essay
Week 4 B IP Subnetting Lab EssayWeek 4 B IP Subnetting Lab Essay
Week 4 B IP Subnetting Lab EssayAmanda Brady
 
BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up Craig Schumann
 
Gearman - Northeast PHP 2012
Gearman - Northeast PHP 2012Gearman - Northeast PHP 2012
Gearman - Northeast PHP 2012Mike Willbanks
 

Similaire à Homebrew Your Own Metrics - An IBM Domino Administrator's Guide to SNMP (MWLUG 2014 Session SA103) (20)

SNMP Demystified Part-II
SNMP Demystified Part-IISNMP Demystified Part-II
SNMP Demystified Part-II
 
AdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWare
AdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWareAdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWare
AdminCamp 2018 - Virtuell - schneller und besser! Notes V10 auf Citrix & VMWare
 
New204
New204New204
New204
 
OSMC 2012 | Shinken by Jean Gabès
OSMC 2012 | Shinken by Jean GabèsOSMC 2012 | Shinken by Jean Gabès
OSMC 2012 | Shinken by Jean Gabès
 
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
 
IBM Domino / IBM Notes Performance Tuning
IBM Domino / IBM Notes Performance Tuning IBM Domino / IBM Notes Performance Tuning
IBM Domino / IBM Notes Performance Tuning
 
OSMC 2009 | net-snmp: The forgotten classic by Dr. Michael Schwartzkopff
OSMC 2009 | net-snmp: The forgotten classic by Dr. Michael SchwartzkopffOSMC 2009 | net-snmp: The forgotten classic by Dr. Michael Schwartzkopff
OSMC 2009 | net-snmp: The forgotten classic by Dr. Michael Schwartzkopff
 
DNUG Webcast: IBM Notes V10 Performance Boost
DNUG Webcast: IBM Notes V10 Performance BoostDNUG Webcast: IBM Notes V10 Performance Boost
DNUG Webcast: IBM Notes V10 Performance Boost
 
AdminCamp 2018 - IBM Notes V10 Performance Boost
AdminCamp 2018 - IBM Notes V10 Performance BoostAdminCamp 2018 - IBM Notes V10 Performance Boost
AdminCamp 2018 - IBM Notes V10 Performance Boost
 
High Availability Architecture for Legacy Stuff - a 10.000 feet overview
High Availability Architecture for Legacy Stuff - a 10.000 feet overviewHigh Availability Architecture for Legacy Stuff - a 10.000 feet overview
High Availability Architecture for Legacy Stuff - a 10.000 feet overview
 
001 implementation nms_software
001 implementation nms_software001 implementation nms_software
001 implementation nms_software
 
Wsadminlib.wasug.2011 0125-0726
Wsadminlib.wasug.2011 0125-0726Wsadminlib.wasug.2011 0125-0726
Wsadminlib.wasug.2011 0125-0726
 
Ceh v5 module 04 enumeration
Ceh v5 module 04 enumerationCeh v5 module 04 enumeration
Ceh v5 module 04 enumeration
 
Puppet ENC – a ServiceNow Scoped Application; Richard Romanus
Puppet ENC – a ServiceNow Scoped Application; Richard RomanusPuppet ENC – a ServiceNow Scoped Application; Richard Romanus
Puppet ENC – a ServiceNow Scoped Application; Richard Romanus
 
Interview questions
Interview questionsInterview questions
Interview questions
 
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAn Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
 
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
1491 - Virtual, Faster, Better! How to Virtualize the Rich Client and Browser...
 
Week 4 B IP Subnetting Lab Essay
Week 4 B IP Subnetting Lab EssayWeek 4 B IP Subnetting Lab Essay
Week 4 B IP Subnetting Lab Essay
 
BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up BP206 - Let's Give Your LotusScript a Tune-Up
BP206 - Let's Give Your LotusScript a Tune-Up
 
Gearman - Northeast PHP 2012
Gearman - Northeast PHP 2012Gearman - Northeast PHP 2012
Gearman - Northeast PHP 2012
 

Dernier

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 

Dernier (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 

Homebrew Your Own Metrics - An IBM Domino Administrator's Guide to SNMP (MWLUG 2014 Session SA103)

  • 1. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP (SA103) Ray Bilyk, Lotus Notes Administrator Dr. Tom Bilan, Director of Technical Services - IHI, LCE and BLD Ilitch Holdings, Inc.
  • 2. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Ray Bilyk • Notes Administrator at Ilitch Holdings, Inc. • • Member of the Month, SocialBizUG.org • Silver Medal, National Homebrew Competition • http://www.thepridelands.com Dr. Tom Bilan • Director of Technical Services at Ilitch Holdings, Inc. • https://www.linkedin.com/in/bilan
  • 3. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP
  • 4. Outline • Overview of presentation • Abstract • Overview of Domino monitoring capabilities • Backstory • SNMP Basics • SNMP Support in Domino • SNMP command-line • Other examples
  • 5. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP ABSTRACT: It's important as an IBM Domino administrator to get metrics on your servers so that you know what's going on in your "Brewhouse". There are also many ways to obtain this very valuable information, like 3rd party tools and even the IBM Domino Administrator client. What many don't know is that there is also another way to capture this very valuable information. SNMP (Simple Network Management Protocol) is an Internet-standard protocol for managing devices on IP networks. In this session, you will learn more about it, what it can give you, how to set it up, and ways to 'drink in' or monitor the information. With proper configuration, administrators not familiar with IBM Domino can obtain and use key IBM Domino server metrics. Homebrew your own metrics by attending this session!
  • 6. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Existing Domino Monitoring Options • Traditional Monitoring – Monitoring Configuration database (EVENTS4.NSF) – Statistics Reports database (STATREP.NSF) • Domino Domain Monitoring (DDM) • Domino Administrator client • 3rd Party Tools
  • 7. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP The Backstory
  • 8. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP What is SNMP? It’s not Simple (until you understand it) It’s not just for Networks It’s for Management It’s a Protocol It’s an industry standard communication protocol for talking to devices that are connected to networks. If a device says it’s manageable it likely has SNMP capabilities.
  • 9. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP How can SNMP help you? SNMP can be used to measure something immediately or over time so that you can make better decisions. SNMP traps can be sent to alert you of an event (i.e. drive failure). SNMP can be used to measure and then set thresholds that trigger alerts.
  • 10. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP How can SNMP help you? cont SNMP is an enabler that allows visibility into real information so you’re not guessing. SNMP can answer questions like: – Do we need more phone lines? – Do we need more Internet bandwidth? – Why is my storage running slow? • Is it CPU? Memory? Disk I/O? Network?????? – Am I going to run out of disk space 3 months from now? – What was going on 20 minutes ago when everyone said the network was running slow? – Do I have a POS system that is getting hard drive errors and will probably die 3 weeks from now? – What temperature was it in the data center at 4 am 3 weeks ago? – How many mail messages are in the queue?
  • 11. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Why use SNMP instead of a special tool? SNMP provides a common interface to get management information for the thousands of different devices made by thousands of vendors. Each product may have it’s own management program but what if you want a dashboard with many different devices on one web page? Once you master SNMP every device looks the same. (In other words, all metric collection problems look like nails so SNMP is the metaphorical hammer) It’s a standard and there are MANY free tools
  • 12. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP The Lingo MIB – Management Information Base – A vendor provided file that explains what SNMP functionality they support. OID – Object Identifier – This is a specific variable that you can get or set on a device. MIB Namespace – A hierarchy that explains how an OID is determined. (picture coming in a few slides) Community – Password (RO = read-only, RW=read-write)
  • 13. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP The Lingo Cont. Get – Asking the device for a value Set – Changing a value in a device Trap – A device sending out an alert Manager – Your PC Agent – The device you’re monitoring
  • 14. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP MIB
  • 15. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP MIB Namespace
  • 16. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Data Types
  • 17. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP What you need to use SNMP The bare minimum to get started: – A SNMP querying program – IP address of the device – Community name – The OID Extras: – Device MIBs (yes… you don’t need MIBs to query a device) – A cool GUI – SNMP Trap receiver
  • 18. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Examples
  • 19. Domino MIB Example lnWaitingMail OBJECT-TYPE --<< INT mail.waiting SYNTAX INTEGER (0..2147483647) ACCESS read-only STATUS optional DESCRIPTION "Number of mail messages waiting to be routed." ::= { lnMail 6 } lnDeadMail OBJECT-TYPE --<< INT mail.dead SYNTAX INTEGER (0..2147483647) ACCESS read-only STATUS optional DESCRIPTION "Number of dead (undeliverable) mail messages." ::= { lnMail 1 }
  • 20. SNMP MIB Example –Writeable lnRemoteReboot OBJECT-TYPE SYNTAX INTEGER { no(1), yes(2) } ACCESS read-write STATUS mandatory DESCRIPTION "Set to 'yes' to reboot the entire system. This value will be returned as 'yes' if the system is in the process of rebooting but hasn't come down yet." ::= { lnControl 5 }
  • 21. Domino SNMP Query Example H:>snmpwalk -Of -v2c -c mwlug -m ALL 172.16.0.37 lnServerCPUCount .iso.org.dod.internet.private.enterprises.lotus.notes.lnInfo.lnStats.lnServer .lnServerInfo.lnServerCPUCount.0 = INTEGER: 4 H:>snmpwalk -On -v2c -c mwlug -m ALL 172.16.0.37 lnServerCPUCount .1.3.6.1.4.1.334.72.1.1.6.2.12.0 = INTEGER: 4 H:>snmpwalk -v2c -c mwlug -m ALL 172.16.0.37 lnServerCPUCount NOTES-MIB::lnServerCPUCount.0 = INTEGER: 4 H:>snmptranslate -Td -m NOTES-MIB .1.3.6.1.4.1.334.72.1.1.6.2.12.0 NOTES-MIB::lnServerCPUCount.0 lnServerCPUCount OBJECT-TYPE -- FROM NOTES-MIB SYNTAX INTEGER (0..2147483647) MAX-ACCESS read-only STATUS optional DESCRIPTION "The number of processors installed on this server." ::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) lotus(334) notes(72) lnInfo(1) lnStats(1) lnServer(6) lnServerInf o(2) lnServerCPUCount(12) 0 }
  • 22. Monitoring Script H:>copy con watchsnmp.bat @echo off snmpwalk -v2c -c mwlug -m ALL 172.16.0.37 %1 watchsnmp.bat %1 ^Z 1 file(s) copied. H:>watchsnmp.bat lnWaitingMail NOTES-MIB::lnWaitingMail.0 = INTEGER: 3 NOTES-MIB::lnWaitingMail.0 = INTEGER: 3 NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 NOTES-MIB::lnWaitingMail.0 = INTEGER: 5 NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 NOTES-MIB::lnWaitingMail.0 = INTEGER: 5 NOTES-MIB::lnWaitingMail.0 = INTEGER: 4 NOTES-MIB::lnWaitingMail.0 = INTEGER: 2 ^CTerminate batch job (Y/N)? y
  • 23. Monitoring Script H:>watchsnmp.bat lnserveravailabilityindex NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 38 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 38 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 38 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 39 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 NOTES-MIB::lnServerAvailabilityIndex.0 = INTEGER: 40 ^CTerminate batch job (Y/N)? y
  • 26. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Setting up Domino for SNMP http://www-01.ibm.com/support/docview.wss?uid=swg21169283 or IBM Domino Administrator 9.0.1 Social Edition Help Look for “Configuring the Domino SNMP Agent” (OS specific steps) Steps for setup on Windows OS 1. Configure SNMP at the Windows operating system level – Go to Start --> Settings --> Control Panel --> Add/Remove Programs. – Select "Add/Remove Windows Components" on the left. – Choose "Management and Monitoring Tools" and click "Details". – Select all under "Management..." – Reboot the operating system 2. Start Domino
  • 27. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Setting up Domino for SNMP (continued) 3. Configure the Domino LNSNMP agent to run as a service: – Run the following commands in the Domino program directory. First stop the service if it is already running - in a DOS prompt run commands : c:Lotusdominonet stop lnsnmp c:Lotusdominonet stop snmp NOTE: If the service is not already running you may see the error: System error 1060 has occurred. The specified service does not exist as an installed service. c:LotusdominoLNSNMP -Sc ( this command is case sensitive ) If it starts you will see : Service creation complete
  • 28. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Setting up Domino for SNMP (continued) 3. Continued – More commands to run… c:Lotusdominonet start snmp c:Lotusdominonet start lnsnmp If it starts you will see: The Lotus Domino SNMP Agent service was started successfully. (NOTE: SNMP console appears on server machine) 4. Run these commands on Domino server console load quryset load intrcpt (for SNMP traps) load collect 5. Add quryset and/or intrcpt and collect to ServerTasks (NOTES.INI)
  • 29. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Barracuda Web Filter MIB Barracuda-SPYWARE DEFINITIONS ::=BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, INTEGER FROM SNMPv2-SMI barracuda FROM Barracuda-REF; bspyware MODULE-IDENTITY LAST-UPDATED "201011040000Z" ORGANIZATION "Barracuda Networks, Inc." CONTACT-INFO " Barracuda Networks Inc. 3175 S. Winchester Blvd. Campbell, CA 95008 " DESCRIPTION " Barracuda Web Filter MIB. Provides: Objects: * 1.3.6.1.4.1.20632.3.1.2 -- ActiveTCPConnections * 1.3.6.1.4.1.20632.3.1.3 -- Throughput * 1.3.6.1.4.1.20632.3.1.4 -- PolicyBlocks * 1.3.6.1.4.1.20632.3.1.5 -- SpywareWebHitBlocks * 1.3.6.1.4.1.20632.3.1.6 -- SpywareDownloadBlock * 1.3.6.1.4.1.20632.3.1.7 -- VirusDownloadBlock * 1.3.6.1.4.1.20632.3.1.8 -- SpywareProtocolBlocks * 1.3.6.1.4.1.20632.3.1.9 -- HTTPTrafficAllowed
  • 30. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Example – Barracuda Output
  • 31. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Server Room Humidity
  • 32. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP NetApp CPU Usage
  • 33. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Voice Channel Usage – Multiple Sources
  • 34. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Fox Internet Traffic XO & AT&T – 24 hours
  • 35. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Fox Internet Traffic - Monthly
  • 36. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Port Errors
  • 37. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Network Dashboard
  • 38. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Thresholds and Alerting
  • 39. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Troubleshooting A few quick things to check if you have problems talking to devices: – Double-check the community (case counts… it’s a password) – Double-check the IP address (ping it) – Double-check that SNMP is Enabled on the device (often it’s disabled by default) – Double-check that there isn’t any restrictions from where the device accepts SNMP packets from – Double-check the SNMP version. Version 1 or 2c are the most common and compatible. Version 3 uses advanced authentication and may be overkill so stick with 1 or 2c.
  • 40. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Free Tools (almost better than free beer!) Net-SNMP http://www.net-snmp.org/ Cacti http://www.cacti.net/ Manageengine MIBBrowser http://www.manageengine.com/ Domino MIB (domino.mib) is located in Domino program directory
  • 41. Homebrew your own Metrics: An IBM Domino Administrator's Guide to SNMP Questions?