美文网首页
网络基础-wireshark常用filter

网络基础-wireshark常用filter

作者: 平解技术控 | 来源:发表于2019-06-09 20:54 被阅读0次

    常用的filter

    destination unreachable /Port unreachable

    icmp.type==3 && icmp.code==3

    过滤一个网段

    ip.addr==157.166.0.0/16

    高延时  (fin包和reset包是正常的)

    tcp.time_delta > 1 && tcp.flags.fin==0 && tcp.flags.reset==0

    handshake12  (可以过滤出三次握手前两次的包)

    tcp.flags.syn==1

    handshake23  (可以过滤出三次握手后两次的包)

    (tcp.flags.syn==1 && tcp.flags.ack==1) || (tcp.seq==1 && tcp.ack==1) && tcp.len==0 && tcp.flags.fin==0

    Bad tcp

    tcp.analysis.flags && !tcp.analysis.window_update

    相关文章

      网友评论

          本文标题:网络基础-wireshark常用filter

          本文链接:https://www.haomeiwen.com/subject/vbfoxctx.html