如何使用C#获取我的系统所连接的无线接入点的BSSID / MAC(媒体访问控制)地址?
请注意,我对WAP的BSSID感兴趣。这与WAP的网络部分的MAC地址不同。
答案 0 :(得分:21)
以下需要以编程方式执行:
netsh wlan show networks mode=Bssid | findstr "BSSID"
以上显示了接入点的无线MAC地址,它与以下内容不同:
arp -a | findstr 192.168.1.254
这是因为接入点有2个MAC地址。一个用于无线设备,一个用于网络设备。我想要无线MAC,但使用 arp 获取网络MAC。
var wlanClient = new WlanClient();
foreach (WlanClient.WlanInterface wlanInterface in wlanClient.Interfaces)
{
Wlan.WlanBssEntry[] wlanBssEntries = wlanInterface.GetNetworkBssList();
foreach (Wlan.WlanBssEntry wlanBssEntry in wlanBssEntries)
{
byte[] macAddr = wlanBssEntry.dot11Bssid;
var macAddrLen = (uint) macAddr.Length;
var str = new string[(int) macAddrLen];
for (int i = 0; i < macAddrLen; i++)
{
str[i] = macAddr[i].ToString("x2");
}
string mac = string.Join("", str);
Console.WriteLine(mac);
}
}
答案 1 :(得分:3)
此question告诉您如何从网络连接中获取所需的任何信息。 (使用NetworkInformation向下滚动到答案)
答案 2 :(得分:3)
using System;
using System.Diagnostics;
class Program
{
static void Main(string[] args)
{
Process proc = new Process();
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.FileName = "cmd";
proc.StartInfo.Arguments = @"/C ""netsh wlan show networks mode=bssid | findstr BSSID """;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.UseShellExecute = false;
proc.Start();
string output = proc.StandardOutput.ReadToEnd();
proc.WaitForExit();
Console.WriteLine(output);
}
}
请注意语法错误,例如花括号。但这个概念就在这里。您可以通过定期调用此过程来创建扫描功能。如果出现问题,请纠正我。
答案 3 :(得分:2)
关于以编程方式从ARP.EXE获取该结果:
获取此功能的Win32 API位于IP Helper组函数中,称为GetIpNetTable()。 P/Invoke signature for it is here。Windows Management Instrumentation。你必须编写一些代码来编组它的结果,以及它的一个有趣的Win32 API,它具有可变长度的结果。
另一种方法是使用System.Management and System.Management.Instrumentation namespaces,它在{{3}}中有一套很好的包装类。但是缺点是WMI服务必须运行才能工作。我已经挖了但我似乎无法在WMI树中找到包含等效信息的确切对象。我很确定它存在,因为我在网上看到声称使用此API检索此信息的第三方工具。也许其他人会对这部分感兴趣。