歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux服務器

Tcpdump:Linux下基於命令行的抓包工具

大家可能都已經對著名的抓包工具Ethereal比較熟悉了,這裡再介紹一種基於命令行的抓包工具tcpdump.
 
  舉例:抓本機1813端口上的數據,並將抓包結果保存在test.cap文件中
 
   tcpdump -X -s 0 -w test.cap port 1813
-X Print each packet (minus its link level header) in hex and ASCII.
-s snaplen Setting snaplen to 0 means use the required length to catch whole packets.
-w file Write the raw packets to file rather than parsing and printing them out.


 
  然後在本地可以用Ethereal圖形化界面查看所抓到包的詳細信息。這在通過遠程登錄在服務器上工作的情況下特別有用,因為終端模式無法用圖形化工具抓包

Copyright © Linux教程網 All Rights Reserved