+ add procedure for ipv6 snmp check
This commit is contained in:
parent
37317d3cde
commit
75faf744c7
|
@ -359,6 +359,15 @@ There is a generic SNMP plugin to check it. An example to get 'SysUptime' SNMP O
|
|||
|
||||
$ perl centreon_plugins.pl --plugin=snmp_standard::plugin --mode=numeric-value --oid='.1.3.6.1.2.1.1.3.0' --hostname=127.0.0.1 --snmp-version=2c --snmp-community=public
|
||||
|
||||
----------------------------------------
|
||||
How can i check ipv6 equipment in SNMP ?
|
||||
----------------------------------------
|
||||
|
||||
To check ipv6 equipment, use the following syntax (``udp6:[xxxx]``):
|
||||
::
|
||||
|
||||
$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --hostname='udp6:[fe80::250:56ff:feb5:6ae0]' --mode=storage --snmp-version=2c --snmp-community=public
|
||||
|
||||
-------------------------------------------------
|
||||
How to use memcached server for retention datas ?
|
||||
-------------------------------------------------
|
||||
|
|
|
@ -349,6 +349,15 @@ Par exemple, je veux vérifier que 'crond' fonctionne (s'il y a moins de 1 proce
|
|||
$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --mode=processcount --hostname=127.0.0.1 --snmp-version=2c --snmp-community=public --process-name=crond --critical=@0:0
|
||||
CRITICAL: Number of current processes running: 0 | 'nbproc'=0;;@0:0;0;
|
||||
|
||||
-------------------------------------------------------
|
||||
Comment puis-je vérifier des équipements ipv6 en SNMP ?
|
||||
-------------------------------------------------------
|
||||
|
||||
Vous pouvez vérifier des équipements ipv6 en SNMP via la syntaxe suivante (``udp6:[xxxx]``):
|
||||
::
|
||||
|
||||
$ perl centreon_plugins.pl --plugin=os::linux::snmp::plugin --hostname='udp6:[fe80::250:56ff:feb5:6ae0]' --mode=storage --snmp-version=2c --snmp-community=public
|
||||
|
||||
------------------------------------------------------------
|
||||
Comment puis-je vérifier la valeur d'un OID SNMP générique ?
|
||||
------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue