With respect to the message > > 2007-08-20 13:04:36 ERROR zen.Ping: receiving packet error: Unreachable > instance has no attribute 'data' > Traceback (most recent call last): > File "/home/opt/zenoss/Products/ZenStatus/AsyncPing.py", line 163, in > recvPackets > origpkt = ip.disassemble(icmppkt.data) > AttributeError: Unreachable instance has no attribute 'data' >
That is apparently a bug in Zenoss. The code in AsyncPing.py tries to access icmppkt.data. But if the packet in question is of type ICMP_UNREACH (=Host unreachable), then imppkt will be of type Unreachable, and Unreachable simply has no atttribute data. This looks like a simple case of mixing up data types. I just saw, however, that that code was changed for 2.0.4. So the bug might be fixed there. ------------------------ Sebastian Leske -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=10047#10047 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
