summaryrefslogtreecommitdiff
path: root/doc/bsnmp-ping.8
blob: 4a4b1c8e1834cd28310bd594b3cd01bc819f5aea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.\" 
.\" Copyright (c) 2006, Nate Nielsen
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without 
.\" modification, are permitted provided that the following conditions 
.\" are met:
.\" 
.\"     * Redistributions of source code must retain the above 
.\"       copyright notice, this list of conditions and the 
.\"       following disclaimer.
.\"     * Redistributions in binary form must reproduce the 
.\"       above copyright notice, this list of conditions and 
.\"       the following disclaimer in the documentation and/or 
.\"       other materials provided with the distribution.
.\"     * The names of contributors to this software may not be 
.\"       used to endorse or promote products derived from this 
.\"       software without specific prior written permission.
.\" 
.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
.\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
.\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
.\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
.\" COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 
.\" OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
.\" THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH 
.\" DAMAGE.
.\" 
.\"
.\" CONTRIBUTORS
.\"  Nate Nielsen <nielsen@memberwebs.com>
.\"
.Dd April, 2006
.Dt bsnmp-ping 8
.Os bsnmp-ping 
.Sh NAME
.Nm bsnmp-ping
.Nd an SNMP module which measures latency and reachability to hosts over a time period.
.Sh DESCRIPTION
.Nm
is a module for 
.Xr bsnmpd 1
which allows you to measure latency and reachability. It sends out ICMP packets
to the configured hosts. A history of received packets is maintained, and you can
query via SNMP how many dropped packets, maximum/minumum latency and other stats 
for that history period. 
.Pp
.Sh MIBS
The counters will be available as a table under the following MIB:
.Bd -literal -offset indent
 .1.3.6.1.4.1.12325.1.204
.Ed
.Pp 
Or if the appropriate MIB.txt files have been installed:
.Bd -literal -offset indent
 enterprises.fokus.begemot.ping
.Ed
.Pp
The following SNMP MIBs are available for use (where X is the counter index):
.Bl -tag -width Fl
.It Ar ping.pingCount
The number of hosts to ping.
.It Ar ping.pingEntry.pingIndex.X
The index of the host.
.It Ar ping.pingEntry.pingHost.X
The host (address) to which ICMP packets are being sent.
.It Ar ping.pingEntry.pingInterval.X
The interval (in TimeTicks, 100th of a second) between sent ICMP packets.
.It Ar ping.pingEntry.pingHistory.X
The time period (in pingInterval units, above) that history for received ICMP packets is maintained.
.It Ar ping.pingEntry.pingResponses.X
The number of responses received in the (pingHistory) time period.
.It Ar ping.pingEntry.pingDropped.X
The number of dropped packets in the (pingHistory) time period.
.It Ar ping.pingEntry.pingLatencyAvg.X
The average latency (ms) of ICMP responses in the time period.
.It Ar ping.pingEntry.pingLatencyMin.X
The minimum latency (ms) of ICMP responses in the time period.
.It Ar ping.pingEntry.pingLatencyMax.X
The maximum latency (ms) of ICMP responses in the time period.
.El
.Sh OPTIONS
To activate the 
.Nm
module you must load the module in 
.Pa /etc/snmpd.config
and configure the location for the UNIX socket and 
.Xr bsnmp-regex.conf 5 
.Pp
Use the pingHost, pingInterval, and pingHistory SNMP MIBs in the 
.pa /etc/snmpd.config
file to setup the hosts you'd like to ping.
.Sh EXAMPLES
The following example pings two hosts. The first gets pinged once per second, and 
keeps a history for 300 seconds. The second is pinged 5 times per second, and the 
history is kept for 30 seconds.
.Pp
The following would be added to 
.Pa /etc/snmpd.config:
.Bd -literal -offset indent
begemotSnmpdModulePath."ping" = "/usr/local/lib/snmp_ping.so"
%ping
pingHost.1 = "10.8.9.2"
pingInterval.1 = 100
pingHistory.1 = 300

pingHost.2 = "2.2.2.2"
pingInterval.1 = 20
pingHistory.1 = 150
.Ed
.Sh SEE ALSO
.Xr bsnmpd 1
.Sh AUTHOR
.An Nate Nielsen Aq nielsen@memberwebs.com