I am using a Java application to send UDP packets to an Android device. There I have another Java application that receives these UDP packets and displays its data - very simple.

Now I am working on some routing algorithms - therefore it would be nice to know how many hops a UDP packet did since it was send. My idea is to just read out the TTL (time-to-live) value of the packet and display it. Do you know if this is possible with pure Java? The class DatagramPacket doesn't give any hints at all.

I guess that this is not possible because this information might already have been removed at a lower layer, but I just want to be sure. :-)

link|improve this question

80% accept rate
possible duplicate of Determine the remaining TTL of a multicast packet in Java – Stephen C Nov 25 '10 at 14:19
(And the answer seems to be that it is not possible in pure Java to get the remaining TTL, and that TTL only strictly makes sense at the raw IP packet level.) – Stephen C Nov 25 '10 at 14:20
feedback

2 Answers

up vote 2 down vote accepted

The TTL field is, as you know, a feature of the underlying IP protocol (when used), not of UDP. So it makes sense for it not to be visible in the DatagramPacket API. However, I think you're right; it's not normally possible to get access to the IP packets through datagram-level API:s. You probably need to look into packet capture.

link|improve this answer
Thanks - of course you are right. I totally forgot that this field is available on IP layer only. :-) So basically it is not possible until one captures the packets on a lower layer. – mreichelt Nov 25 '10 at 14:34
feedback

This is part of IP header and is set from socket, apparently only for multicast sockets. Check this answer:

Java control IP TTL?

link|improve this answer
You can use a MulticastSocket instead of a DatagramSocket for unicasting but you still can't get the TTL of a packet from it. The getTimeToLive() method just returns the default TTL used for sending. – EJP Nov 25 '10 at 23:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.