溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

unix常用抓包方法

發(fā)布時(shí)間:2020-06-09 20:00:21 來源:網(wǎng)絡(luò) 閱讀:435 作者:glying 欄目:系統(tǒng)運(yùn)維

1.HP-UX
    用nettl和netfmt命令配合使用
   a. 編輯過濾配置文件
   將感興趣的網(wǎng)絡(luò)信息過濾出來
   配置文件格式如下:
filter.conf:
filter ip_saddr 192.6.2.1
filter ip_daddr 192.6.2.1
filter udp_sport 2049
filter udp_dport 2049
filter tcp_sport 23
filter tcp_dport 23 /* TCP port 23 = telent
    b. 啟動(dòng)抓包服務(wù)
     nettl -start
    c. 開始抓包
     nettl -tn 0x30800000 -e ns_ls_ip -size 1024 -tracemax 99999 -f /tmp/raw0
    d. 停止抓包
     nettl -tf -e all
    e. 停止抓包服務(wù)
     nettl -stop
    f. 查看抓包內(nèi)容
     netfmt -N -n -l -c /tmp/filter.conf -f /tmp/raw0.TRC000

2.Solaris
     用系統(tǒng)自帶的snoop命令
snoop -d bge0 host 192.168.1.1 port 1521

3.Linux
     用系統(tǒng)自帶的tcpdump
tcpdump -i eth0 dst port 1521

4. AIX

    a. iptrace和ipreport命令配合使用

       iptrace如果在命令行而不是用SRC啟動(dòng),必須用kill -15來停止,否則會(huì)有些內(nèi)核資源未釋放.

       iptrace產(chǎn)生trace文件;ipreport輸出trace文件內(nèi)容

    b. 用系統(tǒng)自帶的tcpdump

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI