In diesem Beitrag werden einige Wireshark Filter vorgestellt. Wie man WLAN Traces erstellt und Wireshark startet wurde in einem vorherigen Beitrag beschrieben.
Framearten
Management Frames
Frame Type Wireshark Filter Alle Management Frames wlan.fc.type==0
(Re-)Association Request / Response
Frame Subtype Wireshark Filter Association Request wlan.fc.type_subtype==0 Association Response wlan.fc.type_subtype==1 Ressociation Request wlan.fc.type_subtype==2 Ressociation Response wlan.fc.type_subtype==3
Probe Request / Response
Frame Subtype Wireshark Filter Probe Request wlan.fc.type_subtype==4 Probe Response wlan.fc.type_subtype==5
Beacon
Frame Subtype Wireshark Filter Beacon wlan.fc.type_subtype==8
Announcement traffic inidication message (ATIM)
Frame Subtype Wireshark Filter ATIM wlan.fc.type_subtype==9
Disassociate
Frame Subtype Wireshark Filter Disassociate wlan.fc.type_subtype==10
(De-)Authentication
Frame Subtype Wireshark Filter Authentication wlan.fc.type_subtype==11 Deauthentication wlan.fc.type_subtype==12
Action
Frame Subtype Wireshark Filter Action wlan.fc.type_subtype==13
Control Frames
Frame Type Wireshark Filter Alle Control Frames wlan.fc.type==1
Power Save Poll (PS-Poll)
Frame Subtype Wireshark Filter Power-Save Poll wlan.fc.type_subtype==26
RTS / CTS
Frame Subtype Wireshark Filter Request To Send (RTS) wlan.fc.type_subtype==27 Clear To Send (CTS) wlan.fc.type_subtype==28
(Block-)ACK
Frame Subtype Wireshark Filter Block ACK Request wlan.fc.type_subtype==24 Block ACK wlan.fc.type_subtype==25 Acknowledgement (ACK) wlan.fc.type_subtype==29
Contention-Free (CF)
Frame Subtype Wireshark Filter CF-Ends wlan.fc.type_subtype==30 CF-Ends / CF-ACKs wlan.fc.type_subtype==31
Data Frames
Frame Type Wireshark Filter Alle Data Frames wlan.fc.type==2
Data
Frame Subtype Wireshark Filter Data wlan.fc.type_subtype==32 Data + CF-ACK wlan.fc.type_subtype==33 Data + CF-Poll wlan.fc.type_subtype==34 Data + CF-ACK + CF-Poll wlan.fc.type_subtype==35 Null wlan.fc.type_subtype==36 CF-ACK wlan.fc.type_subtype==37 CF-Poll wlan.fc.type_subtype==38 CF-ACK + CF-Poll wlan.fc.type_subtype==39
QoS Data
Frame Subtype Wireshark Filter QoS Data wlan.fc.type_subtype==40 QoS Data + CF-ACK wlan.fc.type_subtype==41 QoS Data + CF-Poll wlan.fc.type_subtype==42 QoS Data + CF-ACK + CF-Poll wlan.fc.type_subtype==43 QoS Null wlan.fc.type_subtype==44 QoS CF-Poll wlan.fc.type_subtype==46 QoS CF-ACK + CF-Poll wlan.fc.type_subtype==47
Adressen
Frame Type Wireshark Filter Spezifische Adresse wlan.addr==<macaddr>
Adresse Wireshark Filter Transmitter Address (TA) wlan.ta==<macaddr> Receiver Address (RA) wlan.ra==<macaddr> Source Address (SA) wlan.sa==<macaddr> Destination Address (DA) wlan.da=<macaddr>
Netzwerk
Adresse Wireshark Filter BSSID wlan.bssid==<macaddr> SSID wlan_mgt.ssid==“<SSID>“
RadioTap
Adresse Wireshark Filter Kanal radiotap.channel.freq==<Frequenz> Data Rate radiotap.datarate==<datarate Mbps> Signal Strength (RSSI) radiotap.dbm_antsignal==<strength dBm>
Kommentare von Waldo Rama