計算機網(wǎng)絡(luò)ping實驗報告_第1頁
計算機網(wǎng)絡(luò)ping實驗報告_第2頁
計算機網(wǎng)絡(luò)ping實驗報告_第3頁
計算機網(wǎng)絡(luò)ping實驗報告_第4頁
計算機網(wǎng)絡(luò)ping實驗報告_第5頁
已閱讀5頁,還剩2頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

PAGE4PAGE3課程設(shè)計課程名稱《計算機網(wǎng)絡(luò)課程設(shè)計》題目名稱____PING程序設(shè)計____學(xué)生學(xué)院____自動化學(xué)院____專業(yè)班級_________學(xué)號學(xué)生姓名_____________指導(dǎo)教師_____________2009年12月30日摘要本說明書主要包括了ping程序設(shè)計的設(shè)計目的、ping程序的工作原理以及設(shè)計方案,重點介紹了ping程序的源代碼,并且附帶了實驗結(jié)果以及總結(jié)等。關(guān)鍵字:ping程序設(shè)計目錄TOC\o"1-6"\h\z\u1實驗設(shè)計目的及要求 31.1 設(shè)計目的 31.2 設(shè)計要求 32 實驗內(nèi)容 32.1 定義數(shù)據(jù)結(jié)構(gòu) 32.2 程序?qū)崿F(xiàn) 32.3 程序要求 33 ping工作原理及設(shè)計方案 33.1 設(shè)計思路 33.2 設(shè)計方案 43.3 ping源程序 44 實驗結(jié)果 75 總結(jié) 76 參考文獻 7len);voidsend_packet(void);voidrecv_packet(void);intmain(intargc,CHAR*argv[]){ structhostent*host; structprotoent*protocol; inttimeout=1000; intSEND_COUNT=4; inti; char*par_host; charm_Input[100]; printf("InputIP:"); gets(m_Input); par_host=m_Input; WORDwVersionRequested; WSADATAwsaData; interr; wVersionRequested=MAKEWORD(2,2); err=WSAStartup(wVersionRequested,&wsaData); if(err!=0)return; if(LOBYTE(wsaData.wVersion)!=2|| HIBYTE(wsaData.wVersion)!=2){ WSACleanup(); return; } if((protocol=getprotobyname("icmp"))==NULL)//返回對應(yīng)于給定協(xié)議名的包含名字和協(xié)議號 { printf("getprotobynameerror\n");//的protoent結(jié)構(gòu)指針 exit(1); } if((sockfd=socket(AF_INET,SOCK_RAW,protocol->p_proto))<0) { printf("socketerror\n"); exit(1); } if(setsockopt(sockfd,SOL_SOCKET,SO_RCVTIMEO,(char*)&timeout,sizeof(timeout))<0)//設(shè)置套接口的選項 fprintf(stderr,"failedtosetrecvtimeout:%d\n",WSAGetLastError()); if(setsockopt(sockfd,SOL_SOCKET,SO_SNDTIMEO,(char*)&timeout,sizeof(timeout))<0) fprintf(stderr,"failedtosetsendtimeout:%d\n",WSAGetLastError()); memset(&dest_addr,0,sizeof(dest_addr)); dest_addr.sin_family=AF_INET; if(host=gethostbyname(par_host))//返回對應(yīng)于給定主機名的主機信息 { memcpy((char*)&dest_addr.sin_addr,host->h_addr,host->h_length); //resolveaddresstohostname if(host=gethostbyaddr(host->h_addr,4,PF_INET)) par_host=host->h_name; } elseif(dest_addr.sin_addr.s_addr=inet_addr(par_host)==INADDR_NONE) { printf("Unkownhost%s\n",par_host); exit(1); } pid=_getpid(); printf("Pinging%s[%s]:with%dbytesofdata:\n\n",par_host,inet_ntoa(dest_addr.sin_addr),SEND_SIZE); for(i=0;i<SEND_COUNT;i++) { send_packet(); recv_packet(); Sleep(1000); }}//thisalgorithmisreferencedfromother'sunsignedshortcal_chksum(unsignedshort*addr,intlen){ intnleft=len; intsum=0; unsignedshort*w=addr; unsignedshortanswer=0; while(nleft>1) {sum+=*w++; nleft-=2; } if(nleft==1)//處理ICMP報頭為奇數(shù)個字節(jié)時累加最后一個 {*(unsignedchar*)(&answer)=*(unsignedchar*)w; sum+=answer; } sum=(sum>>16)+(sum&0xffff); sum+=(sum>>16); answer=~sum; returnanswer;}//打包intpack(intpack_no){ intpacksize; structicmp*icmp; packsize=8+SEND_SIZE; icmp=(structicmp*)sendpacket; icmp->icmp_type=ICMP_ECHO; icmp->icmp_code=0; icmp->icmp_chksum=0; icmp->icmp_seq=pack_no; icmp->icmp_id=pid; icmp->icmp_data=GetTickCount(); icmp->icmp_chksum=cal_chksum((unsignedshort*)icmp,packsize);/*校驗算法*/ returnpacksize;}//解包intunpack(char*buf,intlen){ structip*ip; structicmp*icmp; doublertt; intiphdrlen; ip=(structip*)buf; iphdrlen=ip->ip_hl*4; icmp=(structicmp*)(buf+iphdrlen); if((icmp->icmp_type==ICMP_ECHOREPLY)&&(icmp->icmp_id==pid)) { len=len-iphdrlen-8; rtt=GetTickCount()-icmp->icmp_data; printf("Replyfrom%s:bytes=%dtime=%.0fmsTTL=%dicmp_seq=%u\n", inet_ntoa(from_addr.sin_addr), len, rtt, ip->ip_ttl, icmp->icmp_seq); return1; } return0;}//發(fā)送voidsend_packet(){ intpacketsize; staticintpack_no=0; packetsize=pack(pack_no++); if(sendto(sockfd,sendpacket,packetsize,0,(structsockaddr*)&dest_addr,sizeof(dest_addr))<0) printf("Destinationhostunreachable.\n"); //printf("sendNO%d\n",pack_no-1);}//接收voidrecv_packet(){ intn,fromlen; intsuccess; fromlen=sizeof(from_addr); do { if((n=recvfrom(sockfd,recvpacket,sizeof(recvpacket),0,(structsockaddr*)&from_addr,&fromlen))>=0) success=unpack(recvpacket,n); elseif(WSAGetLastError()==WSAETIMEDOUT) { printf("Requesttimedout.\n"); return; } }while(!success);}實驗結(jié)果總結(jié)本次課程設(shè)計較好地實現(xiàn)了要求做到的功能,但同

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論