This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Can we use No in the filter expression?

0

Hi,

Can't we use No(default Number columnn in the capturing window) as a filter(for ex: No >25)? A Custom protocol has a Sequence Number field.This is also added as a column in the capturing window. My Requirement is: I should apply No==25(example) first and then take the Sequence Number from that row. If its not possible this way, please let me know all the other ways to obtain the Sequence Number value from a particular row. Please Help. Thanks in Advance.

This question is marked "community wiki".

asked 19 Oct '11, 22:08

Terrestrial%20shark's gravatar image

Terrestrial ...
96212829
accept rate: 42%

edited 21 Oct '11, 00:22


One Answer:

3

The frame number is available as the filter "frame.number" :-)

So you can use : frame.number > 25

answered 20 Oct '11, 01:11

SYN-bit's gravatar image

SYN-bit ♦♦
17.1k957245
accept rate: 20%

edited 20 Oct '11, 02:55

I 've acquired good Information from the question called Get frame data and packet info from frame number?. How can i access a particular field called Sequence Number from that frame?

(19 Oct '11, 22:59) Terrestrial ...

may i know the brief details of the fields present in the structure frame_data?(only the fields that are necessary)

(19 Oct '11, 23:06) Terrestrial ...

thanks SYNbit. Your answer solved my problem.

(21 Oct '11, 00:18) Terrestrial ...