Ad Widget

Collapse

Error: OID not increasing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hmcs
    Junior Member
    • Mar 2013
    • 14

    #1

    Error: OID not increasing

    Hello,

    I'm trying to montior a teldat bintec router using "Template SNMP Interfaces" via SNMP2. I'm getting an error "OID not increasing" from teh discovery rule. Using snmpwalk I get following output:

    snmpwalk -v 2c -c public 192.168.1.1 IF-MIB::ifInOctets

    IF-MIB::ifInOctets.0 = Counter32: 0
    IF-MIB::ifInOctets.1 = Counter32: 0
    IF-MIB::ifInOctets.2 = Counter32: 0
    IF-MIB::ifInOctets.1000000 = Counter32: 782955907
    IF-MIB::ifInOctets.1000001 = Counter32: 0
    IF-MIB::ifInOctets.1050000 = Counter32: 1228974579
    IF-MIB::ifInOctets.1050001 = Counter32: 0
    IF-MIB::ifInOctets.1010000 = Counter32: 270750
    Error: OID not increasing: IF-MIB::ifInOctets.1050001
    >= IF-MIB::ifInOctets.1010000


    With the -Cc option ("do not check returned OIDs are increasing") of snmpwalk it works fine.
    Is there an option in ZABBIX to disable this check or to get it work?

    Regards

    Henry
  • szenrobi
    Junior Member
    • Jan 2011
    • 13

    #2
    Error: OID not increasing

    I made a similar question about a month ago, but still no real answer, just thry to make an trouble ticket.

    There are OID-s with deacreasing numbering. They are also impossible to monitor with zabbix.

    I am waiting for answer too.

    Robert

    Comment

    • hmcs
      Junior Member
      • Mar 2013
      • 14

      #3
      SNMP Error: OID not increasing

      Well,

      strange is, that on some bintec models it works fine....

      Comment

      • hmcs
        Junior Member
        • Mar 2013
        • 14

        #4
        SNMP Error: OID not increasing

        Hello,

        got help from Teldat-Support: you've to set "snmpAdminGetOrder=sorted" in the MIB of the device and it works all fine


        bye
        Henry

        Comment

        • Mojarrison
          Junior Member
          • Apr 2013
          • 3

          #5
          Hi people,

          First of all, sorry for my poor english level

          I've get a similar error with the OIDs in SNMP device template. I resolve it (don't remember how), but one hour later, all the monitorized servers throw alerts "Server X was unreachable", "Server Y is down". In all cases the servers were OK, but Zabbix Server see them like "down status".

          All of them turns between ON and OFF status, too with the server unmonitorized... so I'm trying to re-install all the stuff O_O

          Can anyone help me, please?

          Comment

          • aquarios
            Junior Member
            • May 2021
            • 4

            #6
            You can force the "-Cc" option of the SNMPwalk to be applied globally (for all user) - including Zabbix the following way:
            Code:
            printf "dontCheckOrdering 1\n" | sudo tee /etc/snmp/snmpwalk.conf
            Also check the "Max repetition count" setting on the host's interface level to prevent the output from being truncated

            Comment

            Working...