on 2.1.2 (and 2.1.1 too) I have some devices with ifOperStatus = down. If I try to snmpget the ifOperStatus value I get "up". How can I force zenoss to refresh this value ? It seems I can't get graphs if the ifOperStatus is down...

I've seen this on some machines before as well, but I haven't figured out exactly what the cause is. Could you try the following patch on your $ZENHOME/Products/DataCollector/plugins/zenoss/snmp/ InterfaceMap.py? After applying it you will need to restart Zope with "zopectl restart" then remodel the device.

Index: InterfaceMap.py
===================================================================
--- InterfaceMap.py     (revision 8125)
+++ InterfaceMap.py     (working copy)
@@ -43,7 +43,8 @@
                  '.5': 'speed',
                  '.6': 'macaddress',
                  '.7': 'adminStatus',
-                 '.8': 'operStatus'}
+                 '.8': 'operStatus',
+                 '.9': 'ignoreme'}
         ),
         # ipAddrTable is the better way to get IP addresses
         GetTableMap('ipAddrTable', '.1.3.6.1.2.1.4.20.1',

_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to