wireshark 中无线帧的类型和过滤规则对照表

|----------------------------|------------------------------|
| 帧类型 | 过滤器语法 |
| Management frame | wlan.fc.type == 0 |
| Control frame | wlan.fc.type == 1 |
| Data frame | wlan.fc.type == 2 |
| Association request | wlan.fc.type_subtype == 0x00 |
| Association response | wlan.fc.type_subtype == 0x01 |
| Reassociation request | wlan.fc.type_subtype == 0x02 |
| Reassociation response | wlan.fc.type_subtype == 0x03 |
| Probe request | wlan.fc.type_subtype == 0x04 |
| Probe response | wlan.fc.type_subtype == 0x05 |
| Beacon | wlan.fc.type_subtype == 0x08 |
| Disassociate | wlan.fc.type_subtype == 0x0A |
| Authentication | wlan.fc.type_subtype == 0x0B |
| Deauthentication | wlan.fc.type_subtype == 0x0C |
| Action frame | wlan.fc.type_subtype == 0x0D |
| Block ACK requests | wlan.fc.type_subtype == 0x18 |
| Block ACK | wlan.fc.type_subtype == 0x19 |
| Power save poll | wlan.fc.type_subtype == 0x1A |
| Request to send | wlan.fc.type_subtype == 0x1B |
| Clear to send | wlan.fc.type_subtype == 0x1C |
| ACK | wlan.fc.type_subtype == 0x1D |
| Contention free period end | wlan.fc.type_subtype == 0x1E |
| NULL data | wlan.fc.type_subtype == 0x24 |
| QoS data | wlan.fc.type_subtype == 0x28 |
| Null QoS data | wlan.fc.type_subtype == 0x2C |

相关推荐
是阿建吖!21 分钟前
【Linux | 网络】socket编程 - 使用TCP实现服务端向客户端提供简单的服务
linux·网络·tcp/ip
cui_win1 小时前
【网络】Linux 内核优化实战 - net.ipv4.tcp_dsack
linux·网络·tcp/ip
wyjcxyyy3 小时前
DIDCTF-应急响应(续)
网络
cui_win4 小时前
【网络】Linux 内核优化实战 - net.ipv4.tcp_ecn
linux·网络·tcp/ip
uuu_柚子4 小时前
华为动态路由配置
网络·华为·智能路由器
uuu_柚子4 小时前
华为静态路由配置
网络·华为·智能路由器
IT摆渡者5 小时前
网络安全护网实战:攻击手段解析与防御策略
运维·网络·经验分享
不羁。。5 小时前
【网络协议安全】任务13:ACL访问控制列表
网络·网络协议·安全
IT成长日记6 小时前
【Docker基础】Docker网络模式:Host模式深度解析
网络·docker·容器·host·网络模式