上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc

上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc

ID:58998091

大?。?49.00 KB

頁數(shù):8頁

時間:2020-09-16

上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc_第1頁
上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc_第2頁
上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc_第3頁
上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc_第4頁
上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc_第5頁
資源描述:

《上機1基于WinPcap的網絡嗅探器設計與實現(xiàn).doc》由會員上傳分享,免費在線閱讀,更多相關內容在教育資源-天天文庫。

1、上機1:基于WinPcap的網絡嗅探器設計1、目的與要求掌握基于WinPcap的網絡編程模式。理解并能應用WinPcap設計并實現(xiàn)網絡數(shù)據包的捕獲與解析。2、設備與上機環(huán)境l連網PC機(至少一臺)。l計算機硬件要求:IntelPentium5處理器、256MB以上內存,Ethernet網卡,網線若干。l計算機軟件要求:MSWindows9x/2000/XP操作系統(tǒng),TCP/IP協(xié)議,WinPcap430,Visualc++6.0/.net系統(tǒng)。3、上機內容與步驟:在程序設計之前,請參照提供的軟件安裝WinPcap。之后,按照如下步驟操作:步驟1:在VC++6.0下創(chuàng)建一個DOS命

2、令行程序,工程名:自己的學號-PacketDump步驟2:打開main()函數(shù),在主程序中增加如下頭文件和常量定義:#include#defineLINE_LEN16pcap_if_t*alldevs,*d;pcap_t*fp;u_intinum,i=0;charerrbuf[PCAP_ERRBUF_SIZE];intres;structpcap_pkthdr*header;constu_char*pkt_data;printf("pktdump_ex:printsthepacketsofthenetworkusingWinPcap.");printf("Us

3、age:pktdump_ex[-ssource]""Examples:""pktdump_ex-sfile.acp""pktdump_ex-s\Device\NPF_{C-F3C3-4373-94AC-9A34B7DAD998}");if(argc<3){printf("Noadapterselected:printingthedevicelist:");/*Theuserdidn'tprovideapacketsource:Retrievethelocaldevicelist*/if(pcap_findalldevs(&alldevs,err

4、buf)==-1){fprintf(stderr,"Errorinpcap_findalldevs_ex:%s",errbuf);exit(1);}/*Printthelist*/for(d=alldevs;d;d=d->next){printf("%d.%s",++i,d->name);if(d->description)printf("(%s)",d->description);elseprintf("(Nodescriptionavailable)");}if(i==0){printf("Nointerfacesfound!MakesureWinPcap

5、isinstalled.");return-1;}printf("Entertheinterfacenumber(1-%d):",i);scanf("%d",&inum);if(inum<1

6、

7、inum>i){printf("Interfacenumberoutofrange.");/*Freethedevicelist*/pcap_freealldevs(alldevs);return-1;}/*Jumptotheselectedadapter*/for(d=alldevs,i=0;inext,i++);/*Opentheadapter*/

8、if((fp=pcap_open_live(d->name,//nameofthedevice65536,//portionofthepackettocapture.//65536grantsthatthewholepacketwillbecapturedonalltheMACs.1,//promiscuousmode(nonzeromeanspromiscuous)1000,//readtimeouterrbuf//errorbuffer))==NULL){fprintf(stderr,"Erroropeningadapter");return-1;}}else{/*D

9、onotcheckfortheswitchtype('-s')*/if((fp=pcap_open_live(argv[2],//nameofthedevice65536,//portionofthepackettocapture.//65536grantsthatthewholepacketwillbecapturedonalltheMACs.1,//promiscuousmode(nonzeromeanspromiscuous)1000,//readtimeouterrbuf

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內容,確認文檔內容符合您的需求后進行下載,若出現(xiàn)內容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。