What could DUP mean when using ping?
|
DUP means duplicate packet. From
There are different reasons for this, did you capture your network traffic with an interface in promiscous mode? Sometimes this is the reason for dupplicated packets. |
|||
|
|
|
It means the reply packet is a duplicate. Each ICMP packet sent out to pint a host has a sequence number that is returned with the response. Sometimes you'll actually get more than one reply. This is usually caused by faulty networks. Wireless networks often rely on re-sending packets if they don't get proper verification, and if the first one actually worked, the re-send will be a duplicate. In normal usage duplicates are discarded. In ping replies they are noted because they tell you something about how the network is functioning. For example, if you are getting 100% duplicates some fault detection mechanism is likely broken. |
|||
|
|