擷取區域網路電腦名稱以及IP以及mac地址

來源:互聯網
上載者:User

標籤:

 void GetAll()        {            IDictionary<string, string> hostList = new Dictionary<string, string>();            DirectoryEntry MainGroup = new DirectoryEntry("WinNT:");            foreach (DirectoryEntry domain in MainGroup.Children)            {                foreach (DirectoryEntry pc in domain.Children)                {                    try                    {                        System.Net.IPAddress[] remoteHost = Dns.GetHostAddresses(pc.Name);                        hostList.Add(pc.Name, remoteHost[0].ToString());                    }                    catch { }                }            }            using (StreamWriter sw = new StreamWriter("c:\\pp.txt", true))            {                foreach (KeyValuePair<string, string> child in hostList)                {                    sw.WriteLine(Environment.NewLine + "name:" + child.Key + "  ip:" + child.Value);                }                sw.Flush();                sw.Close();            }        }
View Code

以上把區域網路的電腦以及IP儲存到c盤

再根據ip地址擷取mac地址

 public string GetMac(string IP)        {            string dirResults = "";            ProcessStartInfo psi = new ProcessStartInfo();            Process proc = new Process();            psi.FileName = "nbtstat";            psi.RedirectStandardInput = false;            psi.RedirectStandardOutput = true;            psi.Arguments = "-A   " + IP;            psi.UseShellExecute = false;            proc = Process.Start(psi);            dirResults = proc.StandardOutput.ReadToEnd();            proc.WaitForExit();            dirResults = dirResults.Replace("\r", "").Replace("\n", "").Replace("\t", "");            Regex reg = new Regex("Mac[   ]{0,}Address[   ]{0,}=[   ]{0,}(?<key>((.)*?))__MAC", RegexOptions.IgnoreCase | RegexOptions.Compiled);            Match mc = reg.Match(dirResults + "__MAC");            if (mc.Success)            { return mc.Groups["key"].Value; }            else            {                reg = new Regex("Host   not   found", RegexOptions.IgnoreCase | RegexOptions.Compiled);                mc = reg.Match(dirResults);                if (mc.Success)                {                    return "Host   not   found!";                }                else                { return ""; }            }        }
View Code

需要的稍作更改即可使用

擷取區域網路電腦名稱以及IP以及mac地址

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.