当前位置:   article > 正文

linux tcpdump的交叉编译以及使用

linux tcpdump的交叉编译以及使用

一、源码下载

官网点击跳转

二、编译

1、解压

tar -xf libpcap-1.10.4.tar.xz

tar -xf tcpdump-4.99.4.tar.xz

2、配置及编译

  1. //libpcap:
  2. ./configure --host=arm-linux --target=arm-linux CC=arm-linux-gcc --with-pcap=linux --prefix=$PWD/build
  3. //tcpdump
  4. ./configure --host=arm-linux --target=arm-linux CC=arm-linux-gcc --prefix=$PWD/build
  5. make && make install

三、命令使用

  1. //监视指定网络接口eth0的数据包。若不指定网卡,默认tcpdump只会监视第一个网络接口,一般是eth0
  2. tcpdump -i eth0
  3. //捕获以太网接口eth0上的数据包,并将它们写入到名为eth0.pcap的文件中
  4. ./tcpdump -i eth0 -w eth0.pcap
  5. //抓取eth0接口,122.224.241.154收发的包
  6. tcpdump -i eth0 host 122.224.241.154
  7. //抓取30.30.30.3040.40.40.40收发的包
  8. tcpdump -i eth0 host 30.30.30.30 and 40.40.40.40
  9. //监视所有30.30.30.3发出的数据包
  10. tcpdump -i eth0 src host 30.30.30.3
  11. //抓取122.224.241.154发送和接收的80端口的10个包
  12. tcpdump -i eth0 host 122.224.241.154 and tcp port 80 -c 10
  13. //抓取网络地址是10.109.130.0/24的发送和接收的数据包
  14. tcpdump -i eth0 net 10.109.130.0/24
  15. //抓取192.168.102.156的ping包10
  16. tcpdump –i eth0 host 192.168.102.156 and icmp –c 10
  17. //抓取发送到192.168.107.216的ESP数据包
  18. tcpdump -i eth0 dst host 192.168.107.216 and esp -nn
  19. //抓取发送到主机hao123或者百度的80端口的包
  20. tcpdump -i eth0 port 80 and host www.hao123.com or www.baidu.com
  21. //抓取主机192.168.107.216发送或者接收的ICMP数据包详细信息,数量是20个,并保存到root下,文件名是1.cap
  22. tcpdump -i eth0 host 192.168.107.216 -s 0 -c 20 –nnv -w /root/1.cap
  23. //读取1.cap包内容
  24. tcpdump -r /root/1.cap

觉得有帮助的话,打赏一下呗。。

           

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/527831
推荐阅读
相关标签
  

闽ICP备14008679号