Author Profile - My name is Joke (pronounced \yo-kə\ or Joan for those who do not speak Dutch). During the day, I work as a secretary for a non-profit organization providing assisted living for mentally handicapped people in the south of The Netherlands. In my spare time I like to use Wireshark. I find it interesting and necessary to monitor my home network to see what is going on. As a user I like to answer questions at the Wireshark Mailing List.
What is in it for me? Well, I learn a great deal whenever I try to solve real-world problems. I am also a member of the NGN (the Dutch Network User's Group). I write articles about how to use Wireshark and the command line tools. And if there is still some spare time left, I like to go biking in the woods near my hometown with my husband and fellow geek.
Wireshark: Wireless Display and Capture Filters samples
Display filters
You can apply display filters, when you want to look for specific data in capture files.
The packets, that don't match the Display Filter are hidden, but not removed from the capture file.
There are different ways to apply display filters.
A way to use display filters is to start typing in the Filter Input Field in the Filter Toolbar.
You can take advantage of the autocomplete function. When the back-ground of the filterbox turns green the filter string is valid.
Don't forget to hit Apply or Enter to apply the filter.
You can also copy and paste filter strings into the Filter Input Field.
Here are some examples:
- Show only the beacon frames:
wlan.fc.type_subtype == 0x08 - Show everything except the beacon frames:
!wlan.fc.type_subtype == 0x08 - Show only beacon frames and ack frames:
(wlan.fc.type_subtype == 0x08) || (wlan.fc.type_subtype == 0x1d) - Show everything except the beacon and ack frames
(!wlan.fc.type_subtype == 0x08) && (!wlan.fc.type_subtype == 0x1d)
You will find more information in the Wireshark User's Guide and in the Wireshark Wiki.
Continue reading to learn more about capture filters.
Click on image to enlarge
Continue reading "Wireshark: Wireless Display and Capture Filters Samples (by Joke Snelders)" »


Recent Comments