1

我有一种情况,我 ping 网络中的一系列 IP。然后,我尝试连接到成功的 ping。

我的目标是连接到具有特定 MAC 前缀的特定设备。例如,当我 ping 100 个 IP 的范围时,我可能会收到 20 个回复。这些回复包括计算机、打印机,可能还有我尝试连接的硬件。

目前发生的情况是,当我尝试连接到我想要的硬件以外的任何东西(即计算机、打印机)时,我得到一个超时连接。

这很好,但是效率不高。我想通过使用 MAC 地址过滤出成功的 ping 列表,但是,我还没有找到允许我在连接硬件之前寻找 MAC 地址的解决方案。

我已经浏览了这里的大多数 MAC 问题,但没有一个符合我的需要。

有任何想法吗??

4

1 回答 1

4

我能够在这里找到解决方案:http: //pinvoke.net/default.aspx/iphlpapi/SendARP.html

以下方法返回 MAC

internal static string GetMAC(string ip)
    {
        IPAddress dst = IPAddress.Parse(ip); // the destination IP address Note:Can Someone give the code to get the IP address of the server

        byte[] macAddr = new byte[6];
        uint macAddrLen = (uint)macAddr.Length;
        if (SendARP((int)dst.Address, 0, macAddr, ref macAddrLen) != 0)
            throw new InvalidOperationException("SendARP failed.");

        string[] str = new string[(int)macAddrLen];
        for (int i = 0; i < macAddrLen; i++)
            str[i] = macAddr[i].ToString("x2");
        return string.Join(":", str);
        //Console.WriteLine(string.Join(":", str));
    }
于 2010-06-29T15:24:58.413 回答