Stef,
From: Network Fortius [mailto:netfortius@gmail.com]
Sent: Tuesday, September 06, 2005 10:25 AM
To: nanog@merit.edu
Subject: Re: level3.net in Chicago - high packet loss?!?And how exactly would you interpret the number returned by net_loss
(int), in a column called "LOSS", in reference to reachability of a
"hop" between two end points:int net_loss(int at)
{
if ((host[at].xmit - host[at].transit) == 0)
return 0;
/* times extra 1000 */
return 1000*(100 - (100.0 * host[at].returned / (host[at].xmit -
host[at].transit)) );
} ?
This piece of code is modified by me (all mistake is mine). It
converts the the drop to percentage. x 1000 was a trick to handle
none int returned by the function. This was an issue I did not
have a clear answer.
Regarding to you original post. Your trace end2end (last hop) has
0.0% drop proved the entire path was free of packet loss. The drop
in the middle of the path could be related to ICMP rate limit or
other things. Should it was a congestion in the X hop, every hop
after X would be impacted by it. Thus X+1, X=2... has to be > 0.0%.
Hope this help,
Min