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

How to capture udp data in a ip range from Capture Filter?

0

I tried to use dst ...25/100 and dst ...25 ..***.26 ...

It does not work

Is this option available from Ethereal Option window?

Thanks

asked 26 Apr '11, 06:56

likeshark's gravatar image

likeshark
1112
accept rate: 0%


2 Answers:

2

If you want to use capture filters you need to use the tcpdump syntax, not display filter syntax. You could filter like this:

net 192.168.0.0/24

See also http://wiki.wireshark.org/CaptureFilters

answered 26 Apr '11, 10:14

Jasper's gravatar image

Jasper ♦♦
23.8k551284
accept rate: 18%

2

And if you want to use Wireshark display filters, then you need to use the correct Wireshark display filter syntax. See: http://wiki.wireshark.org/DisplayFilters

answered 26 Apr '11, 11:02

cmaynard's gravatar image

cmaynard ♦♦
9.4k1038142
accept rate: 20%