wifi各种类型的帧在wireshark中的筛选方法
转之:https://blog.csdn.net/jingjing_decheng/article/details/143054029
大类 筛选
控制帧:wlan.fc.type == 0x0
管理帧:wlan.fc.type == 0x1
数据帧:wlan.fc.type == 0x2
控制帧
wlan.fc.type_subtype == 0x00 // Association Request
wlan.fc.type_subtype == 0x01 // Association Response
wlan.fc.type_subtype == 0x02 // Reassociation Request
wlan.fc.type_subtype == 0x03 // Reassociation Response
wlan.fc.type_subtype == 0x04 // Probe Request
wlan.fc.type_subtype == 0x05 // Probe Response
wlan.fc.type_subtype == 0x06 // Measurement Pilot
wlan.fc.type_subtype == 0x07 // Unknown
wlan.fc.type_subtype == 0x08 // Beacon
wlan.fc.type_subtype == 0x09 // ATIM
wlan.fc.type_subtype == 0x0a // Disassociate
wlan.fc.type_subtype == 0x0b // Authentication
wlan.fc.type_subtype == 0x0c // Deauthentication
wlan.fc.type_subtype == 0x0d // Action
wlan.fc.type_subtype == 0x0e // Action No Ack
wlan.fc.type_subtype == 0x0f //
管理帧
wlan.fc.type_subtype == 0x10 // Unknown
wlan.fc.type_subtype == 0x11 // Unknown
wlan.fc.type_subtype == 0x12 // Trigger
wlan.fc.type_subtype == 0x13 // TWT Ack
wlan.fc.type_subtype == 0x14 // Beamforming Report Poll
wlan.fc.type_subtype == 0x15 // VHT/HE/EHT/RANGING NDP Announcement
wlan.fc.type_subtype == 0x16b // Unknown
wlan.fc.type_subtype == 0x17 //
wlan.fc.type_subtype == 0x18 // 802.11 Block Ack Req
wlan.fc.type_subtype == 0x19 // 802.11 Block Ack
wlan.fc.type_subtype == 0x1a //
wlan.fc.type_subtype == 0x1b // Request-to-send
wlan.fc.type_subtype == 0x1c // Clear-to-send
wlan.fc.type_subtype == 0x1d // Acknowledgement
wlan.fc.type_subtype == 0x1e // CF-End (Control-frame)
wlan.fc.type_subtype == 0x1f // CF-End + CF-Ack (Control-frame)
数据帧
wlan.fc.type_subtype == 0x20 // Data
wlan.fc.type_subtype == 0x21 // Data + CF-Ack
wlan.fc.type_subtype == 0x22 // Data + CF-Poll
wlan.fc.type_subtype == 0x23 //
wlan.fc.type_subtype == 0x24 // Null function (No data)
wlan.fc.type_subtype == 0x25 // Acknowledgement (No data)
wlan.fc.type_subtype == 0x26 // CF-Poll (No data)
wlan.fc.type_subtype == 0x27 // CF-Ack/Poll (No data)
wlan.fc.type_subtype == 0x28 // QoS Data
wlan.fc.type_subtype == 0x29 // QoS Data + CF-Acknowledgment
wlan.fc.type_subtype == 0x2a // QoS Data + CF-Poll
wlan.fc.type_subtype == 0x23 //
wlan.fc.type_subtype == 0x2c // QoS Null function (No data)
wlan.fc.type_subtype == 0x2d // Unknown
wlan.fc.type_subtype == 0x2e // QoS CF-Poll (No Data)
————————————————

共有 0 条评论