Odd Traceroute
While troubleshooting a network issue for packets appearing to be duplicated (only once, not a continual flood), I did a trace from a nearby system and have output unlike anything I've seen before.
Localhost#traceroute 192.168.10.20
Traceroute to 192.168.10.20 ,30 hops max 0 byte packets:
1 192.168.255.252 <1 ms <1 ms <1 ms
2 192.168.10.20 3 ms <1 ms 2 ms
3 192.168.10.20 <1 ms 4 ms <1 ms
4 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: <1 ms
5 192.168.10.20 2 ms * <1 ms
6 192.168.10.20 <1 ms 2 ms *
7 192.168.10.20 <1 ms <1 ms 2 ms
8 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: <1 ms
9 192.168.10.20 2 ms * <1 ms
10 192.168.10.20 <1 ms 2 ms *
11 192.168.10.20 <1 ms <1 ms 2 ms
12 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: <1 ms
13 192.168.10.20 2 ms * <1 ms
14 192.168.10.20 <1 ms 2 ms *
15 192.168.10.20 <1 ms <1 ms 2 ms
16 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: 1 ms
17 192.168.10.20 2 ms * 1 ms
18 192.168.10.20 <1 ms <1 ms *
19 192.168.10.20 <1 ms <1 ms 2 ms
20 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: <1 ms
21 192.168.10.20 2 ms * <1 ms
22 192.168.10.20 <1 ms 2 ms *
23 192.168.10.20 <1 ms <1 ms 2 ms
24 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: <1 ms
25 192.168.10.20 2 ms * <1 ms
26 192.168.10.20 <1 ms 2 ms *
27 192.168.10.20 <1 ms <1 ms 2 ms
28 0.0.0.0 * [192.168.10.20 ] reports: <1 ms [192.168.10.20 ] reports: <1 ms
29 192.168.10.20 2 ms * <1 ms
30 192.168.10.20 <1 ms 2 ms *
Hop Count = 30 Last TTL = 30 Test attempt = 90 Test Success = 69
I checked several other systems directly attached to this same switch and got similar results. However, doing a trace to a system connected to a downstream switch connected to the problem switch seemed just fine:
Localhost#traceroute 192.168.10.120
Traceroute to 192.168.10.120 ,30 hops max 0 byte packets:
1 192.168.255.252 <1 ms <1 ms <1 ms
2 192.168.10.120 2 ms 1 ms 4 ms
Hop Count = 2 Last TTL = 2 Test attempt = 6 Test Success = 6
Vlan involved is trunked between the two switches, an IP Route on the upstream switch routes the traffic to the problem switch.
The connected systems are all various servers, and connections to these all seem to be operating just fine otherwise. I only noticed this because the 10.20 system is my DHCP server (for multiple subnets) and it suddenly started seeing duplicate DHCP requests coming in, and was sending duplicate replies as a result. This wasn't causing any problems so I didn't investigate until I saw my logs were growing faster than normal.
Has anyone come across a trace similar to the above, and if so, what was the cause? I'm not a network dummy, but this is a new one for me.