

- Vendor ethernet mac address lookup and search how to#
- Vendor ethernet mac address lookup and search password#
- Vendor ethernet mac address lookup and search download#
Vendor ethernet mac address lookup and search password#
I don’t know what my password is and I don’t care.The Ethernet MAC Address is a unique identifier for network cards, of the form 05-A8-34-C3-67-B4 or 05A8342367B4 (6 pairs of digits and characters in the range A-F, which might or might not be separated by hyphens).
Vendor ethernet mac address lookup and search how to#
Vendor ethernet mac address lookup and search download#
This little script will download the latest version of the OUI list and convert to a PowerShell Object. Converting the IEEE List to a PowerShell Object The full list to too large to keep locally so I exported the full list (again using export-clixml) and implemented a lookup as an Azure Function (that reads in the full list as a PSObject that takes ~1.7 seconds for 25,000+ records) which can then be queried with either Hex or Base16 as per the format in the IEEE list and the vendor name is returned. I then extracted the manufacturers I expect to need to reference/lookup into a PSObject that is easily exportable and importable (export-clixml / import-clixml) and use that locally in my application. I downloaded this list and wrote a simple parser that created a PowerShell Object with the Hex, Base16 and Name of each Manufacturer. A full list can be found here which is updated regularly. The IEEE standards body maintains a list of the manufacturers assigned the 24 bit identifiers. So I rolled my own using an Azure Trigger Function. I needed more than 1000 per day, but I also had a good idea of what the vendors were likely to be for a lot of my requests. If you are only looking up small volumes that is all good, but after that you get into subscription fee costs. And some like that one have an API to allow lookup too. There are a number of online lookup tools to determine who the vendor is from the MAC address.

A MAC Address looks like this 60:5b:b4:f9:63:05. The first 24 bits (6 hex characters) detail the vendor / manufacturer. Using the search bar, you can look for a OUI and find all vendors associated with the information you provided. As you are probably aware each network device has a unique MAC Address. OUI Lookup is a website that provides up-to-date information about MAC Addresses and OUI Vendors. As part of that I needed to identify the Vendor / Manufacturer of networking equipment. Recently I started working on another side IoT Project.
