在Wireshark中過濾報文長度可以使用以下過濾器表達式:
frame.len >= <最小長度> and frame.len <= <最大長度>
例如,要過濾出報文長度在100到200字節之間的報文,可以使用以下過濾器表達式:
frame.len >= 100 and frame.len <= 200
frame.len == <特定長度>
例如,要過濾出報文長度為150字節的報文,可以使用以下過濾器表達式:
frame.len == 150
在Wireshark的過濾器欄中輸入以上表達式后,即可過濾出符合條件的報文。