TCPDUMP 使用

作者: zcwfeng | 来源:发表于2020-12-14 00:46 被阅读0次

    下面的例子全是以抓取eth0接口为例,如果不加”-i eth0”是表示抓取所有的接口包括lo。

    1、抓取包含10.10.10.122的数据包

    tcpdump -i eth0 -vnn host 10.10.10.122

    2、抓取包含10.10.10.0/24网段的数据包

    tcpdump -i eth0 -vnn net 10.10.10.0/24

    3、抓取包含端口22的数据包

    tcpdump -i eth0 -vnn port 22

    4、抓取udp协议的数据包

    tcpdump -i eth0 -vnn udp

    5、抓取icmp协议的数据包

    tcpdump -i eth0 -vnn icmp

    6、抓取arp协议的数据包

    tcpdump -i eth0 -vnn arp

    7、抓取ip协议的数据包

    tcpdump -i eth0 -vnn ip

    8、抓取源ip是10.10.10.122数据包。

    tcpdump -i eth0 -vnn src host 10.10.10.122

    9、抓取目的ip是10.10.10.122数据包

    tcpdump -i eth0 -vnn dst host 10.10.10.122

    10、抓取源端口是22的数据包

    tcpdump -i eth0 -vnn src port 22

    11、抓取源ip是10.10.10.253且目的ip是22的数据包

    tcpdump -i eth0 -vnn src host 10.10.10.253 and dst port 22

    12、抓取源ip是10.10.10.122或者包含端口是22的数据包

    tcpdump -i eth0 -vnn src host 10.10.10.122 or port 22

    13、抓取源ip是10.10.10.122且端口不是22的数据包
    [root@ ftp]# tcpdump -i eth0 -vnn src host 10.10.10.122 and not port 22

    14、抓取源ip是10.10.10.2且目的端口是22,或源ip是10.10.10.65且目的端口是80的数据包。

    tcpdump -i eth0 -vnn ( src host 10.10.10.2 and dst port 22 ) or ( src host 10.10.10.65 and dst port 80 )

    15、抓取源ip是10.10.10.59且目的端口是22,或源ip是10.10.10.68且目的端口是80的数据包。
    [root@localhost ~]# tcpdump -i eth0 -vnn 'src host 10.10.10.59 and dst port 22' or ' src host 10.10.10.68 and dst port 80 '

    16、把抓取的数据包记录存到/tmp/fill文件中,当抓取100个数据包后就退出程序。

    tcpdump –i eth0 -vnn -w /tmp/fil1 -c 100

    17、从/tmp/fill记录中读取tcp协议的数据包

    tcpdump –i eth0 -vnn -r /tmp/fil1 tcp

    18、从/tmp/fill记录中读取包含10.10.10.58的数据包

    tcpdump –i eth0 -vnn -r /tmp/fil1 host 10.10.10.58

    分析dump 的数据

    tcpdump -i eth0 tcp port 3306 -w ./mysql.cap 保存的文件用wireshark直接打开分析

    相关文章

      网友评论

        本文标题:TCPDUMP 使用

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