程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> 用C#編寫獲取遠程IP,MAC的方法

用C#編寫獲取遠程IP,MAC的方法

編輯:C#基礎知識
如果要想獲得遠程的地址,需要用sendarp這個函數來實現。具體的代碼如下: 
[DllImport("Iphlpapi.dll")] 
private static unsafe extern int SendARP(Int32 dest,Int32 host,ref IntPtr mac,ref IntPtr length); 
[DllImport("Ws2_32.dll")] 
private static extern Int32 inet_addr(string ip); 

Int32 ldest= inet_addr("157.60.68.163");//目的地的ip 
Int32 lhost= inet_addr("157.60.68.33");//本地的ip 

try 

Byte[] macinfo=new Byte[6]; 
Int32 length=6; 

IntPtr mac=new IntPtr(macinfo[0]); 
IntPtr len=new IntPtr(6); 
int ii=SendARP(ldest,lhost, ref mac, ref len); 

Console.WriteLine("Mac Add:"+mac); 
Console.WriteLine("length:"+len); 



catch(Exception err) 

Console.WriteLine(err); 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved