tcpdump怎么用
时间: 2024-01-26 08:13:25 浏览: 76
tcpdump使用方法
tcpdump是一个在Linux系统下使用的抓包工具,它可以用来捕获网络数据包并进行分析。下面是tcpdump的使用方法:
1. 抓取指定接口的数据包:
```shell
tcpdump -i eth0
```
这个命令将会抓取eth0接口上的所有数据包。
2. 抓取指定端口的数据包:
```shell
tcpdump port 80
```
这个命令将会抓取目标端口为80的所有数据包。
3. 抓取指定源IP地址或目标IP地址的数据包:
```shell
tcpdump src 192.168.1.100
tcpdump dst 192.168.1.100
```
这两个命令分别抓取源IP地址为192.168.1.100和目标IP地址为192.168.1.100的所有数据包。
4. 抓取指定协议的数据包:
```shell
tcpdump udp
tcpdump icmp
```
这两个命令分别抓取UDP协议和ICMP协议的所有数据包。
5. 将抓取到的数据包保存到文件中:
```shell
tcpdump -w capture.pcap
```
这个命令将会将抓取到的数据包保存到名为capture.pcap的文件中。
6. 从文件中读取数据包进行分析:
```shell
tcpdump -r capture.pcap
```
这个命令将会从capture.pcap文件中读取数据包进行分析。
阅读全文