You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the ICMP TTL exceed packet come from a different path (there is somewhere a triangle connection), the response TTL is different as the sent. So the hops number is calculated wrong.
Workaround: set the hops from request ttl number. (hops := req.TTL - res.TTL + 1 -> hops = req.TTL)
The text was updated successfully, but these errors were encountered:
If the ICMP TTL exceed packet come from a different path (there is somewhere a triangle connection), the response TTL is different as the sent. So the hops number is calculated wrong.
Workaround: set the hops from request ttl number. (
hops := req.TTL - res.TTL + 1
->hops = req.TTL
)The text was updated successfully, but these errors were encountered: