or how to sort DHCP transaction ID's in a manner that you can see the delta between first 'discover' and the last 'ack'? So far I've tried to make an extra column for asked 10 Sep '15, 01:22 Marc |
One Answer:
You can try the following:
and as a display filter
In regards to your second question, I don't have a packet capture to test it, but I would export the relevant columns as csv and use Excel to graph the trend. answered 10 Sep '15, 07:25 Roland Cheers Roland, but that does the trick for only one DHCP Discover| ACK pair, if instead i would filter the trace for just (10 Sep '15, 23:48) Marc So basically i have two things to solve: one being time measurement, when is that DHCP cycle finished? and two how to match up the first packet and the last from oe transaction iD , without me (without a human looking at the data)? (10 Sep '15, 23:51) Marc Maybe you could provide us a trace in a public accessible place. (11 Sep '15, 00:04) Christian_R 1 I tailored the answer to your screenshot, but the main point was, if you only filter for discover and ack you will reduce the amount of displayed packets. With DHCP relay everything changes. We have to look for another identifier, since the transaction id is the same. To match the packets without human interaction you will have to write a script. (11 Sep '15, 02:37) Roland Basically saying that the 'unique identifier' is a set of values combined, like (client MAC adres + Transaction ID + Discover + Offer + etc) to get answer response pairs to match .. (11 Sep '15, 05:09) Marc |
Don't tell me it's too difficult to be done ;-)