我可以獲取連接到我的網站的MAC地址嗎?如何獲取mac地址
此代碼獲取MAC地址主機並返回錯誤權限。
String macadress = string.Empty;
foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
{
OperationalStatus ot = nic.OperationalStatus;
if (nic.OperationalStatus == OperationalStatus.Up)
{
macadress = nic.GetPhysicalAddress().ToString();
break;
}
}
return macadress;
現在怎麼能得到mac地址用戶?
2. 如何獲取ip用戶?
_Unfortunately _ – SLaks
MAC地址是_Local_區域網絡的一個特點 - MAC地址,你會在一個包會從您的路由器看到的,因爲這是在你的局域網是轉發該數據包到你的東西。 – Hafthor