Wireshark 常用過濾方法

2021-10-16 12:27:46 字數 680 閱讀 7999

說明:在wireshark的過濾規則框filter中輸入過濾條件

指定目的地ip.dst==192.168.1.104指定源位址ip.src==178.212.3.56源埠、目的埠為80的都過濾:tcp.port==80過濾目的80埠:tcp.dstport==80

過濾源80埠:tcp.srcport==80

直接輸入協議名,如http

過濾get:http.request.method=="get"

過濾post:http.request.method=="post"

多個過濾條件使用and連線

過濾ip為192.168.0.2的http協議:ip.src==192.168.0.2 and http

Wireshark常用過濾方法

過濾源ip 目的ip 在wireshark的過濾規則框filter中輸入過濾條件。如查詢目的位址為192.168.101.8的包,ip.dst 192.168.101.8 查詢源位址為ip.src 1.1.1.1 埠過濾 如過濾80埠,在filter中輸入,tcp.port 80,這條規則是把源埠和...

Wireshark 常用過濾使用方法

過濾源 ip 目的 ip 在 wireshark 的過濾規則框 filter 中輸入過濾條件。如查詢目的位址為192.168.101.8的包,ip.dst 192.168.101.8 查詢源位址為ip.src 1.1.1.1埠過濾 如過濾 80 埠,在 filter 中輸入,tcp.port 80,...

wireshark 常用過濾命令

1.過濾源ip 目的ip。在wireshark的過濾規則框filter中輸入過濾條件。如查詢目的位址為192.168.101.8的包,ip.dst 192.168.101.8 查詢源位址為ip.src 1.1.1.1 2.埠過濾。如過濾80埠,在filter中輸入,tcp.port 80,這條規則是...