SNMP Service Detector
The SNMPDetector finds and assigns services based on SNMP. It binds a service with a given name when a particular scalar or table SNMP OID matches defined criteria.
Configuration and use
The SNMPDetector uses the common configuration parameters.
Parameter | Description | Default |
---|---|---|
Required |
||
oid |
Scalar or table SNMP OID used to detect service. |
.1.3.6.1.2.1.1.2.0 |
Optional |
||
vbvalue |
Expected return value to detect the service. |
none |
hex |
Set |
false |
isTable |
Set |
false |
matchType |
Set match type to evaluate the expected value in the SNMP table.
|
exist |
useSnmpProfiles |
Set |
false |
ttl |
Time to live, in milliseconds, to wait for a response from a Minion. |
20000 |
Example for SNMP scalar value
Assume you have a Dell server farm and you want to monitor the global server status provided by the OpenManage Server Administrator.
Global status is provided by a scalar OID .1.3.6.1.4.1.674.10892.1.200.10.1.2.1
.
The service should be detected automatically if the server supports this OID.
For provisioning, we have a requisition named Server
that contains all servers in our data center.
We create a detector with the name Dell-OMSA-Global-State
for this requisition with the following parameters:
Parameter | Value |
---|---|
name |
Dell-OMSA-Global-State |
oid |
.1.3.6.1.4.1.674.10892.1.200.10.1.2.1 |
When the requisition server synchronizes with the service, Dell-OMSA-Global-State
will be detected if it supports the given SNMP OID.
Example using SNMP tables
Assume you have an HP server farm and want to monitor the status of logical drives over SNMP provided from the HP Insight Manager.
The status for logical drives is provided in an SNMP table under .1.3.6.1.4.1.232.3.2.3.1.1.4
.
The service will be automatically assigned to any nodes that respond with a value for the specified OID.
For provisioning, we have a requisition named Server
that contains all servers in our data center.
A detector with the name HP-Insight-Drive-Logical
for this requisition is created with the following parameters:
Parameter | Default value |
---|---|
name |
HP-Insight-Drive-Logical |
oid |
.1.3.6.1.4.1.232.3.2.3.1.1.4 |
isTable |
true |
When the requisition Server
is synchronized, the service HP-Insight-Drive-Logical
will be detected if it supports the given SNMP OID table.