i'm using the sharppcap library and try to setup a filter. My goal is to setup a filter that only add packets from one ip adress and not the whole amount of data of any ip and tcp packets. i had tried the whireshark notation...

device = CaptureDeviceList.Instance[itemIndex];
device.Open();
device.Filter = "ip.src=10.0.0.1 and tcp"; // doesn't work - only "ip and tcp" works

does anybody know how to configure the filters for this library ? :-)

thanks a lot :-)

Best Regards Jan

link|improve this question
feedback

1 Answer

SharpPcap is a frontend for libpcap/winpcap so any filter you use has to be in a format that libpcap/winpcap understand. At this time no additional processing is performed by SharpPcap.

I believe the same filter syntax is used across libpcap/winpcap/tcpdump and wireshark.

Try something like:

"tcp and host 172.18.5.4" From here

Chris

SharpPcap author

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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