snmpwalk -v2c -c public ip_addr .1.2.826.0.1.1578918.6.43.1.11 generates the following output:
iso.2.826.0.1.1578918.6.43.1.11.7.7.100.101.102.97.117.108.116.1.1.1.1 = Gauge32: 24
iso.2.826.0.1.1578918.6.43.1.11.7.7.100.101.102.97.117.108.116.1.1.1.2 = Gauge32: 24
iso.2.826.0.1.1578918.6.43.1.11.7.7.100.101.102.97.117.108.116.1.1.1.3 = Gauge32: 24
iso.2.826.0.1.1578918.6.43.1.11.7.7.100.101.102.97.117.108.116.1.1.2.1 = Gauge32: 144
iso.2.826.0.1.1578918.6.43.1.11.7.7.100.101.102.97.117.108.116.1.1.2.2 = Gauge32: 144
iso.2.826.0.1.1578918.6.43.1.11.7.7.100.101.102.97.117.108.116.1.1.2.3 = Gauge32: 144
The numbers in red are the multiple indices I would like to get with the Data Query. The numbers in blue mark which time period this SNMP value represents, such as 1 for current stats, 2 for 5 minute average, 3 for previous hour average.
When I associate a data query with the following XML file, I get 0 items, 0 rows, and a data query debug shows no SNMP data returned:
Code: Select all
<interface>
<name>Get Trunk Stats</name>
<description>Get SNMP info for trunks</description>
<index_order_type>numeric</index_order_type>
<oid_index>.1.2.826.0.1.1578918.6.43.1.11</oid_index>
<fields>
<netmask>
<name>Index</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.2.826.0.1.1578918.6.43.1.11</oid>
</netmask>
</fields>
</interface>
Thank you,
GGandy