SNMP probe parameters
Summarize
Summary of SNMP probe parameters
This documentation details the parameters that can be configured for SNMP probes within ServiceNow’s Yokohama release. These parameters control how SNMP data is queried, retrieved, and processed from network devices, enabling you to tailor SNMP discovery and monitoring to your specific environment and device capabilities.
Show less
Key Parameters and Their Use
- oidspeclist: Defines which OIDs to walk or query, supporting both full walks and targeted table queries with optional filtering. This is essential for specifying exactly what SNMP data to collect.
- source: Specifies the target device’s IP or hostname for SNMP queries, required for probe operation.
- index: Used for Cisco-style community string indexing, often for VLAN interrogation.
- timeout and establishedsessiontimeout: Control response wait times for SNMP requests, allowing you to balance between responsiveness and completeness of data collection.
- requestinterval and requestdelay: Manage timing between SNMP requests to avoid overwhelming devices and optimize query pacing.
- debug: Enables detailed logging for troubleshooting probe operations.
- resultformat: Returns JSON payloads for certain probes, ensuring efficient data handling and preventing sensor failures.
- usegetbulk: Enables efficient retrieval of tabular SNMP data using GETBULK requests instead of multiple GETNEXT calls, improving performance on supported probes and devices.
- usegetscalar: Simplifies retrieval of scalar SNMP values, streamlining queries for single-value data points.
- retries: Defines the number of retry attempts for GETBULK or GETNEXT requests when enabled, enhancing reliability.
Practical Implications for ServiceNow Customers
- Configuring oidspeclist allows precise control over what SNMP data you collect, enabling targeted discovery and monitoring tailored to your network environment.
- Adjusting timeouts and request intervals helps optimize probe performance, particularly in large or busy networks, reducing missed data and improving accuracy.
- Enabling usegetbulk on compatible probes significantly improves efficiency when collecting tabular SNMP data, reducing network load and speeding up discovery.
- Using debug mode can assist in diagnosing issues with SNMP probes during setup or troubleshooting.
- The resultformat parameter ensures stable operation for specific probes by returning data in JSON, preventing sensor failures related to large payloads.
- Understanding the precedence of settings (probe parameter overrides MID Server configuration) allows effective management of SNMP behavior across your environment.
This list of parameters may be passed to the SNMP probes.
For instructions on configuring probe parameters, see Set probe parameters.
| Parameter | Description | Default Value |
|---|---|---|
| oid_spec_list | A list of OID specifications, one per line. Each specification must be in one of the following two forms:
{OID Children} refers to a comma-delimited list of child nodes within the entries for the given table. For example, "ifEntry.ifIndex,ifEntry.ifDescr,ifEntry.ifType" are OID children of the table "iso.org.dod.internet.mgmt.mib-2.interfaces.ifTable". As a convenience, the table entry prefix may be left off. (The preceding children could be specified as "ifIndex,ifDescr,ifType".) Any child may include a filter qualifier in parentheses. For example, the child "entPhysicalContainedIn(=0)" specifies returning table entries only if the value of "entPhysicalContainedIn" equals 0. The
operators supported in the expression are:
If more than one child has a filter expression, a match on any one of the children causes that entry to be read. Any content including and after a "//" is ignored (comments). Any OID that does not start with "1.3.6.1" or "iso.org.dod.internet" automatically prefaces with "1.3.6.1." as a convenience. |
required |
| source | The IP address or host name of the device to query SNMP on. | required |
| index | The index to apply after the community string, for Cisco-style community string indexing (for VLAN interrogation). | 0 |
| credential_id | The sys_id of a specific credential that is preferred for use above the rest. This parameter is for internal use only and is not supported. | none |
| credential_tag | The credential tag that must be used. This parameter is for internal use only and is not supported. | none |
| timeout | The timeout value (in milliseconds) to wait for a response, instead of the default. You can use this parameter to override the mid.snmp.request.timeout SNMP MID Server configuration parameter. Note: When use_getbulk is set to true,
the timeout value is for an individual GETBULK request. |
1500 |
| established_session_timeout | The interval (in milliseconds) to wait for a response after at least one response has been received. Longer values can be useful for collecting complete and accurate data. You can use this parameter to override the mid.snmp.session.timeout SNMP MID Server configuration parameter. | 500 |
| debug | Enables debug logging. Set to true for debug mode. | false |
| request_interval | The interval (in milliseconds) between successive requests for an OID when a response has not been received, until the timeout (or established_session_timeout) value is reached. If this value is set to at least as long as the timeout (or established_session_timeout) value, then only a single request is sent for any particular OID. If you change the timeout (or established_session_timeout) value, adjust the request_interval at the same time to avoid sending too many or too few requests for the same OID, as appropriate for a given environment. | 400 |
| request_delay | The interval (in milliseconds) between the receipt of a response and the transmission of the next request. The default is 0 (no delay). This value may be set to slow the overall rate of an SNMP query. | 0 |
| result_format | Returns JSON formatted payloads for these probes:
Warning: Use of this parameter with any other probes causes the sensor to fail. |
JSON |
| use_getbulk | Enables the use of SNMP GETBULK requests to retrieve tabular data from SNMP
devices instead of using multiple SNMP GETNEXT requests. For tabular data,
GETBULK is more efficient. Regardless of the request type, certain devices may
not return any results when they are busy with other tasks. This parameter is
used to configure at the probe level. GETBULK can also be set for an individual
MID Server or globally for all MID servers. Settings are listed in the order of
precedence:
The established_session_timeout, request_interval, and request_delay parameters are ignored when use_getbulk is set to true. Instead, the retries parameter is available. The timeout configuration is the same one used by use_getscalar. By default, the following probes use GETBULK requests (the parameter value is
true).
Note: These probes have a timeout value of 5000. |
false |
| use_getscalar | Enables the use of simplified retrieval and handling of scalar values from
SNMP devices. The established_session_timeout, request_interval, and request_delay parameters are ignored when use_getscalar is set to true. Instead, the retries and timeout parameters are available. The timeout configuration is the same one used by use_getbulk. |
false |
| retries | The number of additional attempts Discovery makes to complete an individual GETBULK request (see use_getbulk) or a GETNEXT request when the use_getscalar parameter is set to true. | 2 |