For those who collect routes (yes by default) on Solaris 10 systems with kernel 
rev 125100-08 may have noticed some issues when modeling a system in 
RouteMap.py. The MIB contains the connections that are displayed via netstat 
-an. If this changes during collection you may get the following error;
AttributeError: 'ObjectMap' object has no attribute 'id'
Which then causes the modeling to abort.
Add this simple line to correct the issue, no routes are lost.
for route in routetable.values():
    om = self.objectMap(route)
    if not hasattr(om, "id"): continue         <---- new line #64
    if not hasattr(om, "routemask"): continue

File is in the Products/DataCollector/plugins/zenoss/snmp directory.

------------------------
 Paul Mininni




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

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

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



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

Reply via email to