Type = 0 · Used to discover, join, and leave the BSS. These are the frames you read first in any troubleshooting capture.
0x04
Probe Request
wlan.fc.type_subtype == 4
Sent by a client scanning for networks. Broadcast (null SSID) means the client is looking for any AP. Directed (specific SSID) means it's looking for a saved network - only used for hidden SSIDs in modern devices. More than 10 per second from one device = scan storm.
0x05
Probe Response
wlan.fc.type_subtype == 5
AP's unicast reply to a Probe Request. Contains SSID, supported rates, RSN IE, HT/VHT/HE capabilities, BSS Load, and RNR (in 802.11ax). If you see Probe Requests but no Probe Responses - band mismatch, hidden SSID name wrong, or AP is at capacity.
0x08
Beacon
wlan.fc.type_subtype == 8
Broadcast by every AP every 102.4ms (100 TUs). The loudest frame in any capture - filter it out first when troubleshooting (not wlan.fc.type_subtype == 8). Contains everything a client needs to decide whether to associate: SSID, rates, RSN IE, TIM, DTIM, BSS Color, RNR for 6 GHz discovery. Missing beacons = AP radio problem.
0x09
ATIM
wlan.fc.type_subtype == 9
Announcement Traffic Indication Message. Used in IBSS (ad-hoc) networks to notify sleeping stations that buffered frames are waiting. Rare in enterprise captures - only relevant in peer-to-peer 802.11 topologies.
0x0A
Disassociation
wlan.fc.type_subtype == 10
Softer than Deauthentication - moves the client from State 3 to State 2 (authenticated but not associated). Client can reassociate without re-authenticating. Common during normal roaming. Contains a Reason Code - see Status & Reason Codes reference. If sent by client with Reason 3 or 8, it's a planned disconnect or roam.
0x0B
Authentication
wlan.fc.type_subtype == 11
The first step in joining a BSS. For WPA2/WPA3 networks this is Open System Authentication - a simple two-frame exchange (Algorithm 0) that provides no real security. For WPA3-SAE, Algorithm 3 is used with Commit and Confirm sub-exchanges. For 802.11r FT, these frames carry the FT IE for pre-roam key derivation.
0x0C
Deauthentication
wlan.fc.type_subtype == 12
Resets the client to State 1 - unauthenticated and unassociated. Always contains a Reason Code. Reason 2 = previous auth expired (AP reboot, RADIUS timeout). Reason 15 = 4-way handshake timeout (wrong PSK). Reason 23 = 802.1X failure. A burst of deauths with Reason 1 targeting all clients = deauth flood attack. With PMF required, these frames are cryptographically protected.
0x00
Association Request
wlan.fc.type_subtype == 0
Client declares its full capabilities to the AP - supported rates, HT/VHT/HE capabilities, RSN IE (cipher suites and AKM suites), PMF bits, power save mode, and supported channel widths. This is the frame to inspect when debugging security failures: check the RSN IE against what the AP advertised in the Beacon. Mismatch = Status Code 23 or 24.
0x01
Association Response
wlan.fc.type_subtype == 1
AP's reply to Association Request. Status Code 0 = success. Any non-zero code = rejected. Contains the Association ID (AID) assigned to the client. If rejected, the Status Code tells you exactly why - see Status & Reason Codes reference. This is the frame that closes the 802.11 state machine transition to State 3.
0x02
Reassociation Request
wlan.fc.type_subtype == 2
Used when a client is roaming - it includes the previous AP's BSSID, signalling this is a handoff not a fresh join. Contains the same capability fields as Association Request. For 802.11r FT roaming, look for the FT IE and PMKID list here. Seeing Reassoc instead of Assoc = client previously had an association - confirms a roam event.
0x03
Reassociation Response
wlan.fc.type_subtype == 3
Target AP's reply during a roam. Status Code 0 = roam successful. Status Code 53 = Invalid PMKID - the most misdiagnosed roaming failure. Controller may say "roam successful" but Status Code 53 followed by full re-auth means the FT key hierarchy failed. Not the same roam.
0x0D
Action
wlan.fc.type_subtype == 13
A catch-all frame for protocol actions that don't fit other subtypes. Category field inside defines what it is: Cat 0 = Spectrum Management (DFS), Cat 1 = QoS, Cat 5 = Radio Measurement (802.11k Neighbor Report), Cat 6 = Fast BSS Transition (802.11r), Cat 10 = WNM (802.11v BSS Transition Management), Cat 19 = Robust AV Streaming. Most roaming protocol interaction happens in Action frames.