i've experienced the same issue and i've solved it (i hope so :)
by editing $ZENHOME/Products/DataCollector/SnmpClient.py
at line 124 there is 

Code:
yield self.proxy.getTable(tmap.getoids(),
                                              maxRepetitions=maxRepetitions,
                                              limit=sys.maxint)



when you remove limit=sys.maxint then snmp collection will work again 
so it should look like 

Code:
yield self.proxy.getTable(tmap.getoids(),
                                              maxRepetitions=maxRepetitions)



I think that this IS a bug




-------------------- m2f --------------------

Read this topic online here:
http://forums.zenoss.com/viewtopic.php?p=35738#35738

-------------------- m2f --------------------



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

Reply via email to