通過arp來得到遠程機器的mac地址

來源:互聯網
上載者:User
通過arp來得到遠程機器的mac地址  
   
  include   "stdio.h"  
   
  #include   "stdlib.h"  
   
  #include   "Winsock2.h"  
   
  #include   "iphlpapi.h"  
   
     
   
  #pragma   comment   (   lib,   "ws2_32.lib"   )  
   
  #pragma   comment   (   lib,   "Iphlpapi.lib"   )  
   
     
   
  void   main(   int   argc,   char   **   argv   )  
   
  {  
   
    //處理命令列參數  
   
    if   (   argc   !=   2   )  
   
    {  
   
   printf(   "RmtHost   v0.1   -   Get   remote   HostName   /   MacAddress/n"   );  
   
   printf(   "by   ShotgunLabs   (   Shotgun@xici.net   )/n/n"   );  
   
   printf(   "Usage :/n/tRmtHost.exe   [RemoteIP]/n/n"   );  
   
   printf(   "Example:/n/tRmtHost.exe   192.168.0.3/n/n"   );  
   
   exit(   0   );  
   
    }  
   
     
   
    printf(   "/nIpAddress   :   %s/n",   argv[1]   );  
   
    //初始化SOCKET  
   
    WSADATA   wsaData;  
   
    int   iRet   =   WSAStartup(MAKEWORD(2,1),   &wsaData);  
   
    if   (   iRet   !=   0   )  
   
    {  
   
   printf(   "WSAStartup   Error:%d/n",   GetLastError()   );  
   
   exit(   0   );  
   
    }  
   
    //擷取遠程機器名  
   
    hostent   *   remoteHostent   =   (hostent*)malloc(   sizeof(   hostent   )   );  
   
    int   nRemoteAddr   =   inet_addr(   argv[1]   );  
   
    remoteHostent   =   gethostbyaddr(   (char*)&nRemoteAddr,   sizeof(   in_addr   ),   AF_INET   );  
   
    if   (   remoteHostent   )  
   
   printf(   "HostName :   %s/n",   remoteHostent->h_name   );  
   
    else    
   
   printf(   "gethostbyaddr   Error:%d/n",   GetLastError()   );  
   
     
   
    //發送ARP查詢包獲得遠程MAC地址  
   
    unsigned   char   macAddress[6];    
   
    ULONG   macAddLen   = 6;    
   
    iRet   =   SendARP(   nRemoteAddr,   NULL,   (PULONG)&macAddress,   &macAddLen   );  
   
    if   (   iRet   ==   NO_ERROR   )  
   
    {  
   
   printf(   "MacAddress:   "   );  
   
   for(   int   i   =0;   i<6;   i++   )    
   
   {  
   
      printf(   "%.2x",   macAddress[i]   );  
   
      if   (   i<5   )   printf(   "-"   );  
   
   }  
   
    }  
   
    else    
   
   printf(   "SendARP   Error:%d/n",   GetLastError()   );  
   
    printf(   "/n"   );  
   
  }   
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.