Ad Widget

Collapse

Problems with SNMP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • brunolt
    Junior Member
    • Jan 2011
    • 3

    #1

    Problems with SNMP

    Hi everybody,

    I'm having some problems with SNMP monitoring on Zabbix.
    It seems that Zabbix can't find my MIBs, cause all trigger that I try shows the "Not Supported" status.

    SNMPget is working, as you can see here:
    snmpget -v 2c -c public XXX.XXX.XXX.XXX IF-MIB::ifInOctets.1
    IF-MIB::ifInOctets.1 = Counter32: 447488705

    If I try see the same parameter (ifInOctets) @ Zabbix, it's not supported.
    Anybody knows why is this happening?

    I saw the logs too, and they show these errors:

    zabbix_server [6690]: ERROR: File [/tmp/zabbix_server.pid] exists and is locked. Is this process already running ?
    Cannot find module (SNMPv2-MIB): At line 1 in (none)
    snmp_build: unknown failure 20437:20110316:114128.770 Item [XXXX:ifInOctets.1] error: SNMP error [1]


    Sorry my bad english, I'm brazilian and I haven't been praticing the language for a while (shame on me).

    Thanks for your attention,

    Bruno.
  • hoyt
    Member
    • Aug 2007
    • 31

    #2
    I solved this problem by just using the numeric OID.

    You can find the numeric OID with the following command:

    % snmptranslate -On -m ALL IF-MIB::ifInOctets.1
    .1.3.6.1.2.1.2.2.1.10.1

    Take the string of numbers (with the leading '.') and put that in the "SNMP OID" field.

    Comment

    • Zaniwoop
      Senior Member
      • Jan 2010
      • 232

      #3
      You may want to try somthing like this as the SNMP OID

      Code:
      IF-MIB::ifInOctets["index","ifDescr","Serial1"]
      where the last parameter is the Interface description (Serial1 in this case)

      Comment

      Working...