802.11 Management Frames have MAC header with 3 addresses fields in it. If it is 802.11a/b/g then it has 24 byte MAC header where as if it is 802.11n management frame it has 28 byte (additional 4 byte HT control field) MAC header as shown below (page 124-125, CWAP Official Study Guide)
There are 12 management frame subtypes defined by 802.11-2007 standard shown below (page 125 – CWAP study guide).
In wireshark you can use this subtype to filter those management traffic. Below shows those filters & sample of management frame for each of those subtypes.
1. Association Request
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x00)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x01)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x02)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x03)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x04)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x05)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x08)
8. Announcement Traffic Indication Message – ATIM
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x09)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x0a)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x0b)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x0c)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x0d)
(wlan.fc.type == 0)&&(wlan.fc.type_subtype == 0x0e)
Terrific!