Wireshark 使用 Destination Address 进行过滤的方法

学习笔记作者:admin日期:2025-05-28点击:24

摘要:本文介绍了如何在 Wireshark 中使用目标地址(Destination Address)进行过滤,包括 IPv4、IPv6 和 MAC 地址的过滤方法,以及如何组合过滤条件。

Wireshark 使用 Destination Address 进行过滤

方法一:IPv4 目标地址过滤

ip.dst == 目标IP地址

      例如:ip.dst == 192.168.1.100

方法二:MAC 地址过滤

eth.dst == MAC地址

      例如:eth.dst == 00:11:22:33:44:55

方法三:IPv6 目标地址过滤

ipv6.dst == IPv6地址

      例如:ipv6.dst == fe80::abcd:efgh:ijkl

方法四:网段匹配

ip.dst == 网段

      例如:ip.dst == 192.168.1.0/24

方法五:组合过滤

tcp && ip.dst == 192.168.1.100

      同时满足多个条件。

快速生成过滤器

      右键数据包中的字段,选择 Apply as Filter

上一篇      下一篇