0

After fixing some bad config lines in old MIB's, I'm finally getting somewhere trying to walk an old hardware device. However, an error is still occuring on this particular OID which I can't understand. I would greatly apprecaite any clues:

Here is the -DALL output from walking just that particular OID:

Here is the entire output

MFB
  • 101

1 Answers1

0

The OID is this one:

.1.3.6.1.2.1.11.32

SNMPv2-MIB::snmpProxyDrops
snmpProxyDrops OBJECT-TYPE
  -- FROM       SNMPv2-MIB
  SYNTAX        Counter32
  MAX-ACCESS    read-only
  STATUS        current
  DESCRIPTION   "The total number of Confirmed Class PDUs
            (such as GetRequest-PDUs, GetNextRequest-PDUs,
            GetBulkRequest-PDUs, SetRequest-PDUs, and
            InformRequest-PDUs) delivered to the SNMP entity which
            were silently dropped because the transmission of
            the (possibly translated) message to a proxy target
            failed in a manner (other than a time-out) such that
            no Response Class PDU (such as a Response-PDU) could
            be returned."
::= { iso(1) org(3) dod(6) internet(1) mgmt(2) mib-2(1) snmp(11) 32 }

Most of the debug output seems to be indexing and parsing your MIBs (I counted 336 of them). At the end, the device returns "0" as the answer to the poll:

.1.3.6.1.2.1.11.32.0 = Counter32: 0

Hope this helps.

NSD
  • 21