Is it normal for an ISP to have the same IP twice in a route?

If this happens once or rarely

All IP packets have a time-to-live (TTL) field. This field is decremented by one by every router that forwards a packet. If a router decrements the TTL to 0, it drops the packet and generates an ICMP TTL exceeded error packet and sends it back to the originator.

Traceroute uses this feature to send packets with sequentially increasing TTLs. This allows traceroute to build a picture of the path between source and destination.

In your case, there were probably two paths possible from your router to 217.0.117.61, where one was longer than the other. So what happened was:

  1. The packet sent with TTL=1 reached your router, which answered.
  2. The packet sent with TTL=2
    • reached your router, which decremented the TTL to 1 and sent it on,
    • then reached 217.0.117.61, which answered.
  3. The packet sent with TTL=3
    • reached your router, which decremented the TTL to 2 and sent it on,
    • then reached some unknown router, which decremented the TTL to 1 and sent it on,
    • then reached 217.0.117.61, which answered.

So that is why you have the same entry twice. It could have been worse, with every IP listed twice, but apparently the router to give the first 217.0.117.61 answer never participated again in the trace, so all the following packets passed through the unknown router whose IP was never returned.

If this always happens

Then it is because of the way that your ISP has set up its network. The IPs in your list belong to Deutsche Telekom AG which has an enormous internal network with high-performance sophisticated nodes, of whom one seems to answer twice.

There are a couple of possible explanations :

  • The ISP has a firewall that answers traceroute requests. A corporate firewall is a specialized computer in its own right. It may answer tracroute requests, if programmed to, with the programmed IP address, which may be that of the node it is protecting.

  • A corporate router may answer from both its inner and outer interfaces. Such a high-speed and high-throughput router is actually a network-in-a-box with specialized sub-routers as components. The answers may come from both the forward- and backward-facing sub-routers, answering with the same IP.