码迷,mamicode.com
首页 > 其他好文 > 详细

tcpdump, wireshark过滤器

时间:2020-03-15 00:01:38      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:ssh登录   filters   ssh   ffffff   根据   指定   目的   报文   icm   

  • 指定源,目的IP

tcpdump src=1.1.1.1 and dst=2.2.2.2

wireshark: ip.src = 1.1.1.1 and ip.dst = 2.2.2.2

  • 指定某个主机

tcpdump host=1.1.1.1

wireshark: ip.src=1.1.1.1 or ip.dst = 1.1.1.1, 请注意wireshark host指定的是hostname

  • vxlan

tcpdump -l -n -i <if> ‘port 4789 and udp[8:2] = 0x0800 & 0x0800 and udp[11:4] = <vni> & 0x00FFFFFF‘

  • 根据协议

tcpdump tcp/udp/icmp

wireshark tcp/udp/icmp

ssh登录到系统后,过滤掉ssh报文

tcpdump port not 22 and <the other filters>

tcpdump, wireshark过滤器

标签:ssh登录   filters   ssh   ffffff   根据   指定   目的   报文   icm   

原文地址:https://www.cnblogs.com/redstar9451/p/12494950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!