tcpdump抓包規則命令大全

germany006發表於2014-04-30
轉載地址:http://blog.chinaunix.net/uid-10289946-id-3157912.html

下面的例子全是以抓取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

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28371090/viewspace-1152318/,如需轉載,請註明出處,否則將追究法律責任。

相關文章