MAC Address Inventory Report
Is there a way to get a report that shows all WiFi network adapters and their associated MAC addresses?
Or is there a way to dump all of the Network interfaces on all devices into one spreadsheet where I can filter it manually?
Or is there a way to dump all of the Network interfaces on all devices into one spreadsheet where I can filter it manually?
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
nshah
8 years ago
The wizard should be able to get that information for you. You can also try this.
SELECT MACHINE_NICS.MAC AS NIC_MAC, DHCP_ENABLED, NIC, MACHINE.IP AS MACHINE_IP, MACHINE.MAC AS MACHINE_MAC, MACHINE.NAME AS SYSTEM_NAME FROM MACHINE_NICS JOIN MACHINE ON (MACHINE.ID = MACHINE_NICS.ID) WHERE ((NIC like '%wireless%')) ORDER BY NIC_MAC