-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c6ba891
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
This plugin can check the uptime of a host using SNMP v1 queries. | ||
|
||
check_snmp_uptime is written in Bash and is distributed under the GPLv2 license. This plugin have been created by Yoann LAMY. | ||
|
||
Usage: ./check_snmp_uptime -H xxx.xxx.xxx.xxx -C public -w 50 -c 100 | ||
|
||
-H ADDRESS | ||
Name or IP address of host (default: 127.0.0.1) | ||
-C STRING | ||
Community name for the host's SNMP agent (default: public) | ||
-w INTEGER | ||
Warning level for the the number of days (default: 0) | ||
-c INTEGER | ||
Critical level for the the number of days (default: 0) | ||
-h | ||
Print this help screen | ||
-V | ||
Print version and license information | ||
|
||
This plugin uses the 'snmpget' command included with the NET-SNMP package. | ||
This plugin support performance data output. | ||
|
||
Examples : | ||
|
||
./check_snmp_uptime -H xxx.xxx.xxx.xxx -C public -w 50 -c 100 | ||
|
||
This nagios plugins comes with ABSOLUTELY NO WARRANTY. | ||
|
||
You may redistribute copies of the plugins under the terms of the GNU General Public License v2. |