DiscoSnmpHelperSchema.cfg configuration file

The DiscoSnmpHelperSchema.cfg configuration file defines the operation of the SNMP Helper, which specifies the general rules of SNMP information retrieval.

Database table used

The DiscoSnmpHelperSchema.cfg configuration file can be used to configure inserts into the snmpHelper.configuration database table.

Sample: Configuring timeouts and threads

The following example configuration causes the SNMP helper to behave as follows:

  • 120 threads of program execution are started to process incoming requests for SNMP data from the Helper Server. The SNMP helper processes a maximum of 120 such requests simultaneously.
  • A three-second timeout period is specified for a device to respond to an SNMP query issued by the SNMP helper. If the device has not responded after this time, the helper issues the request again, one time.
insert into snmpHelper.configuration
(
        m_NumThreads,
        m_TimeOut,
        m_NumRetries,
)
values
(
    120, 3000, 1
);