Ad Widget

Collapse

SNMP issue : no such variable name in this MIB.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bertrand39100
    Junior Member
    • Feb 2010
    • 27

    #1

    SNMP issue : no such variable name in this MIB.

    Hi All,

    I would monitor the IMM (Integrated Management Module) of IBM X series servers with snmp.

    I defined several items under Zabbix 1.8 :

    Many items are working correctly and available under Zabbix GUI.

    I have problems with some items (IMM_EVENTLOG_* ; IMM_FANS_* ; IMM_VPD_*, all others are OK)
    All the kind of above items become in "Not Supported" state.
    The important items for me to monitor for me are IMM_EVENT_LOG_* to trigger
    what appends in server log.

    But all the Items are sucessfully retrieved under Net-SNMP tool (running on Zabbix server) :
    by using commands :

    # ./imm_srv_test.sh

    IP_IMM_SRV_TEST=172.17.xxx.xxx

    FILE_IMM_SRV_TEST=/snmp_test/IMM_SRV_TEST.LOG


    echo SNMP CONTACT : > ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.2.1.1.1.0 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.2.1.1.3.0 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.2.1.1.4.0 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.2.1.1.6.0 >> ${FILE_IMM_SRV_TEST}

    echo IMM ALERT : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.3 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.5 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.6 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.8 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.9 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.10 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.6.158.5.1.11 >> ${FILE_IMM_SRV_TEST}

    echo VPD : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.1.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.1.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.1.1.3 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.1.1.4 >> ${FILE_IMM_SRV_TEST}

    echo IMM TEMPERATURE : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.1.2.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.1.2.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.1.2.1.3 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.1.2.1.4 >> ${FILE_IMM_SRV_TEST}

    echo IMM POWERSTATISTICS : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.5.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.5.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.5.1.3 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.5.1.4 >> ${FILE_IMM_SRV_TEST}

    echo IMM FANS : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.3.2.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.3.2.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.3.2.1.3 >> ${FILE_IMM_SRV_TEST}

    echo IMM ERROLOGS : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.2.1.1.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.2.1.1.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.2.1.1.1.3 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.2.1.1.1.4 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.2.1.1.1.5 >> ${FILE_IMM_SRV_TEST}

    echo VPD MACHINE : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.2.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.2.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.2.1.3 >> ${FILE_IMM_SRV_TEST}



    echo IMM SYSTEMHEALTH : >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.4.2.1.1 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.4.2.1.2 >> ${FILE_IMM_SRV_TEST}
    snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.4.2.1.3 >> ${FILE_IMM_SRV_TEST}

    # echo VPD COMPONENT : >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.17.1.1 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.17.1.2 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.17.1.3 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.17.1.4 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.17.1.5 >> ${FILE_IMM_SRV_TEST}

    # echo VPD COMPONENT TRACKING : >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.1 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.2 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.3 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.4 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.5 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.6 >> ${FILE_IMM_SRV_TEST}
    # snmpwalk -v 1 -c emo_snmp_read ${IP_IMM_SRV_TEST} 1.3.6.1.4.1.2.3.51.3.1.5.18.1.7 >> ${FILE_IMM_SRV_TEST}


    [root@ids]# more IMM_SRV_TEST.LOG

    SNMP CONTACT :
    SNMPv2-MIB::sysDescr.0 = STRING: Linux IMM_SRV_VM_ESX1 2.6.16.46-353 #2 PREEMPT Thu Nov 4 14:08:47 UTC 2010 mips
    DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (13848915) 1 day, 14:28:09.15
    SNMPv2-MIB::sysContact.0 = STRING: [email protected]
    SNMPv2-MIB::sysLocation.0 = STRING: DATACENTER_xxx
    IMM ALERT :
    VPD :
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.1.1 = INTEGER: 1
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.1.2 = INTEGER: 2
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.1.3 = INTEGER: 3
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.2.1 = STRING: "IMM"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.2.2 = STRING: "UEFI"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.2.3 = STRING: "DSA"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.3.1 = STRING: "YUOO91E"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.3.2 = STRING: "D6E150A"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.3.3 = STRING: "DSYT80S "
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.4.1 = STRING: "12/16/2010"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.4.2 = STRING: "12/15/2010"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.1.1.4.3 = STRING: "12/10/2010"
    IMM TEMPERATURE :
    SNMPv2-SMI::enterprises.2.3.51.3.1.1.2.1.1.1 = INTEGER: 1
    SNMPv2-SMI::enterprises.2.3.51.3.1.1.2.1.2.1 = STRING: "Ambient Temp"
    SNMPv2-SMI::enterprises.2.3.51.3.1.1.2.1.3.1 = INTEGER: 23
    SNMPv2-SMI::enterprises.2.3.51.3.1.1.2.1.4.1 = INTEGER: 21
    IMM POWERSTATISTICS :
    SNMPv2-SMI::enterprises.2.3.51.3.5.1.1.0 = INTEGER: 255
    SNMPv2-SMI::enterprises.2.3.51.3.5.1.2.0 = INTEGER: 168
    SNMPv2-SMI::enterprises.2.3.51.3.5.1.3.0 = INTEGER: 132
    SNMPv2-SMI::enterprises.2.3.51.3.5.1.4.0 = INTEGER: 1
    IMM FANS :
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.1.1 = INTEGER: 1
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.1.2 = INTEGER: 2
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.1.3 = INTEGER: 3
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.1.4 = INTEGER: 4
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.1.5 = INTEGER: 5
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.1.6 = INTEGER: 6
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.2.1 = STRING: "Fan 1A Tach"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.2.2 = STRING: "Fan 1B Tach"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.2.3 = STRING: "Fan 2A Tach"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.2.4 = STRING: "Fan 2B Tach"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.2.5 = STRING: "Fan 3A Tach"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.2.6 = STRING: "Fan 3B Tach"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.3.1 = STRING: "37 %"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.3.2 = STRING: "29 %"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.3.3 = STRING: "27 %"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.3.4 = STRING: "24 %"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.3.5 = STRING: "40 %"
    SNMPv2-SMI::enterprises.2.3.51.3.1.3.2.1.3.6 = STRING: "34 %"
    IMM ERROLOGS :
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.1.1 = INTEGER: 1
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.1.2 = INTEGER: 2
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.1.3 = INTEGER: 3
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.2.1 = STRING: "The Chassis Event Log on system ESX1_SN_KDXXXXX cleared by us
    er USERID"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.2.2 = STRING: "Remote Login Successful. Login ID: USERID from Web at IP addr
    ess 172.xxx.xxx.xxx"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.2.3 = STRING: "Remote Login Successful. Login ID: USERID from Web at IP addr
    ess 172.xxx.xxx.xxx"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.3.1 = INTEGER: 2
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.3.2 = INTEGER: 2
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.3.3 = INTEGER: 2
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.4.1 = STRING: "01/30/2011"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.4.2 = STRING: "01/30/2011"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.4.3 = STRING: "01/31/2011"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.5.1 = STRING: "02:45:37"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.5.2 = STRING: "03:30:12"
    SNMPv2-SMI::enterprises.2.3.51.3.2.1.1.1.5.3 = STRING: "08:17:42"
    VPD MACHINE :
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.2.1.1.0 = ""
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.2.1.2.0 = STRING: "7945M2G"
    SNMPv2-SMI::enterprises.2.3.51.3.1.5.2.1.3.0 = STRING: "KDXXXXX"
    IMM SYSTEMHEALTH :
    [root@ids]#


    In Zabbix Server Log, I have this :


    2223:20110131:171156.339 Deleted 17208 records from history and trends
    2203:20110131:175320.614 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:175320.614 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] is not supported by agent Old s
    tatus [0]
    2205:20110131:175321.173 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:175321.174 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] is not supported by agent Old s
    tatus [0]
    2206:20110131:175322.290 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:175322.290 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] is not supported by agent Old s
    tatus [0]
    2207:20110131:175323.886 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:175323.893 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] is not supported by agent Old s
    tatus [0]
    2208:20110131:175324.298 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:175324.298 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] is not supported by agent Old s
    tatus [0]
    2205:20110131:175336.443 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:175336.443 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] is not supported by agent Old s
    tatus [0]
    2206:20110131:175337.429 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:175337.429 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] is not supported by agent Old s
    tatus [0]
    2207:20110131:175338.061 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:175338.061 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] is not supported by agent Old s
    tatus [0]
    2208:20110131:175339.453 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:175339.454 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] is not supported by agent Old s
    tatus [0]
    2203:20110131:175340.795 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:175340.795 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] is not supported by agent Old s
    tatus [0]
    2206:20110131:175352.659 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:175352.659 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] is not supported by agent Old s
    tatus [0]
    2207:20110131:175353.226 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:175353.226 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] is not supported by agent Old s
    tatus [0]
    2208:20110131:175354.567 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:175354.567 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] is not supported by agent Old s
    tatus [0]
    2203:20110131:175355.069 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:175355.070 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] is not supported by agent Old s
    tatus [0]
    2205:20110131:175356.523 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:175356.523 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] is not supported by agent Old s
    tatus [0]
    2203:20110131:175820.699 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:175821.632 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:175823.076 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:175823.598 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:175824.987 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:175836.838 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:175837.172 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:175838.682 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:175839.123 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:175840.847 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:175852.409 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:175853.782 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:175854.220 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:175855.210 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:175856.924 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:180313.875 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:180313.875 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] is not supported by agent Old s
    tatus [0]
    2208:20110131:180314.670 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180314.670 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] is not supported by agent Old s
    tatus [0]
    2203:20110131:180315.547 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180315.547 Parameter [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] is not supported by agent Old s
    tatus [0]
    2208:20110131:180330.946 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180330.946 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] is not supported by agent Old s
    tatus [0]
    2203:20110131:180330.948 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180330.949 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] is not supported by agent Old s
    tatus [0]
    2205:20110131:180331.188 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180331.188 Parameter [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] is not supported by agent Old s
    tatus [0]
    2203:20110131:180345.737 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180345.737 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] is not supported by agent Old s
    tatus [0]
    2205:20110131:180346.414 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180346.414 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] is not supported by agent Old s
    tatus [0]
    2206:20110131:180347.134 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:180347.134 Parameter [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] is not supported by agent Old s
    tatus [0]
    2207:20110131:180814.330 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180814.970 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180815.310 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180820.556 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180821.642 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:180822.284 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:180823.465 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180824.064 Item [IMM_SRV_VMWARE1:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180829.936 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180830.619 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180831.729 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180837.000 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:180837.413 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:180838.620 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180840.046 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180840.719 Item [IMM_SRV_VMWARE2:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180846.409 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180846.411 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:180847.442 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.1.3.2.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2206:20110131:180852.645 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.1] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2207:20110131:180853.740 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.2] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2208:20110131:180854.196 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.3] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2203:20110131:180855.536 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.4] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2205:20110131:180856.585 Item [IMM_SRV_VMWARE3:1.3.6.1.4.1.2.3.51.3.2.1.1.1.5] error: SNMP error [(noSuchName) Ther
    e is no such variable name in this MIB.]
    2223:20110131:181256.347 Executing housekeeper
    2223:20110131:181338.892 Deleted 17266 records from history and trends


    I don't how to solve my problem ; all tests I do I have always the same result in zabbix_server.log in the same time,
    all items switch to "Not Supported" state under Zabbix Items GUI and in the following the same items disappeared
    from "Monitor / Overview" section because of 'Not Supported" state.


    Please find attached IMM.MIB file.

    Any ideas will be appreciate.

    Many Thanks.

    Bertrand39100
    Attached Files
Working...