2021-05-12 14:32:11
Linux下tcpdump命令的使用
一般情況下Linux系統會自帶tcpdump工具,如果系統沒有安裝,直接用命令安裝就行了。
安裝命令:yum install -y tcpdump
檢視安裝版本命令:tcpdump --help
檢視網絡卡命令:
知道了網絡卡,就可以使用tcpdump工具針對伺服器上的網絡卡監控、過濾網路資料。
tcpdump常用命令:
#抓取所有經過 eth0,目的或源地址是 192.168.29.162 的網路資料
命令:tcpdump -n -i eth0 host 192.168.29.162
# 源地址
命令:tcpdump -i eth1 src host 192.168.29.162
# 目的地址
命令:tcpdump -i eth1 dst host 192.168.29.162
#抓取當前伺服器eth0網絡卡埠8080的網路資料
命令:tcpdump -n -i eth0 port 8080
#抓取mysql執行的sql語句
命令:tcpdump -i eth1 -s 0 -l -w - dst port 3306 | strings
#抓取mysql通訊的網路包(cap用wireshark開啟)
命令tcpdump -n -nn -tttt -i eth0 -s 65535 'port 3306' -w 20160505mysql.cap
#抓取SMTP 資料
命令:tcpdump -i eth1 'tcp[tcpflags] & tcp-syn != 0 and tcp[tcpflags] & tcp-ack != 0'
#抓取HTTP GET資料,"GET "的十六進位制是 47455420
命令:tcpdump -i eth1 'tcp[(tcp[12]>>2):4] = 0x47455420'
#抓取SSH返回,"SSH-"的十六進位制是 0x5353482D
命令:tcpdump -i eth1 'tcp[(tcp[12]>>2):4] = 0x5353482D'
#實時抓取埠號8080的GET包,然後寫入GET.log
命令:tcpdump -i eth0 '((port 8080) and (tcp[(tcp[12]>>2):4]=0x47455420))' -nnAl -w /tmp/GET.log
#抓取指定SYN個數,-c 引數指定抓多少個包。
命令:time tcpdump -nn -i eth0 'tcp[tcpflags] = tcp-syn' -c 10
Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx
本文永久更新連結地址:https://www.linuxidc.com/Linux/2018-07/153287.htm
相關文章