• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#获取IP及MAC地址方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

C#获取IP及MAC地址 方法,比较齐全

 

using System.Net;
using System;
using System.Management;
using System.Runtime.InteropServices;

public class getIP
{
    [DllImport("Iphlpapi.dll")]
    private static extern int SendARP(Int32 dest, Int32 host, ref Int64 mac, ref Int32 length);
    [DllImport("Ws2_32.dll")]
    private static extern Int32 inet_addr(string ip);

    //获取本机的IP

    public string getLocalIP()
    {
        string strHostName = Dns.GetHostName(); //得到本机的主机名

        IPHostEntry ipEntry = Dns.GetHostByName(strHostName); //取得本机IP

        string strAddr = ipEntry.AddressList[0].ToString();
        return (strAddr);
    }
    //获取本机的MAC

    public string getLocalMac()
    {
        string mac = null;
        ManagementObjectSearcher query = new ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapterConfiguration");
        ManagementObjectCollection queryCollection = query.Get();
        foreach (ManagementObject mo in queryCollection)
        {
            if (mo["IPEnabled"].ToString() == "True")
                mac = mo["MacAddress"].ToString();
        }
        return (mac);
    }

    //获取远程主机IP

    public string[] getRemoteIP(string RemoteHostName)
    {
        IPHostEntry ipEntry = Dns.GetHostByName(RemoteHostName);
        IPAddress[] IpAddr = ipEntry.AddressList;
        string[] strAddr = new string[IpAddr.Length];
        for (int i = 0; i < IPADDR.LENGTH; I++)
        {
            strAddr[i] = IpAddr[i].ToString();
        }
        return (strAddr);
    }
    //获取远程主机MAC

    public string getRemoteMac(string localIP, string remoteIP)
    {
        Int32 ldest = inet_addr(remoteIP); //目的ip 

        Int32 lhost = inet_addr(localIP); //本地ip


        try
        {
            Int64 macinfo = new Int64();
            Int32 len = 6;
            int res = SendARP(ldest, 0, ref macinfo, ref len);
            return Convert.ToString(macinfo, 16);
        }
        catch (Exception err)
        {
            Console.WriteLine("Error:{0}", err.Message);
        }
        return 0.ToString();
    }


    public static void Main(string[] args)
    {
        getIP gi = new getIP();
        Console.WriteLine("本地网卡信息:");
        Console.WriteLine(gi.getLocalIP() + " - " + gi.getLocalMac());

        Console.WriteLine("\n\r远程网卡信息:");
        string[] temp = gi.getRemoteIP("scmobile-tj2");
        for (int i = 0; i < TEMP.LENGTH; I++)
        {
            Console.WriteLine(temp[i]);
        }
        Console.WriteLine(gi.getRemoteMac("192.168.0.3", "192.168.0.1"));
    }
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++参数传递类型的选择发布时间:2022-07-14
下一篇:
C#事务的ACID隔离级别发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap