Mac Address Database Download

The IEEE oui.txt file has become somewhat inconsistent over the years and subsequently requires subvention for use in network infrastructure documentation and reporting. In response to this we have produced a daily sanitized edition that is available for download in bzip2, gzip, Zip and ASCII text.

Our sanitizing process performs Title Case conversion of legacy all UPPERCASE OUI records, fixes for vendor name inconsistencies, spelling corrections, removal of superfluous and erroneous data artifacts that have crept into the original daily generated IEEE oui.txt over time.

Nmap-mac-prefixes Download. Nmap-mac-prefixes Wed, 29 Sep 2021 03:10:26 -0300. 559.7 kB (559,748 bytes). ASCII. Nmap MAC Address Scan. The nmap-mac-prefixes file is used by Nmap to output meaningful OUI vendor names for MAC addresses it detects by matching the three-byte prefix taken from the MAC address and looking for a match in nmap.

Database

Fast and easy MAC address lookup on IEEE directory and Wireshark manufacturer database. Search vendor, manufacturer or organization of a device by MAC/OUI address. Download Address Database Mac Software. Adamo: address database with openoffice v.1.1 OpenOffice address book: Address management for OpenOffice.org. It's based on a OpenOffice form and macros and allows the management of addresses for persons and corporations including managing distribution lists and groups. If both the GUID and MAC Address are not found in the McAfee ePO database, a brand-new System Tree entry is created. If machines are legitimately reporting the same MAC address (for example, when communicating over a VPN concentrator or when deployed from a Hypervisor configured to assign the same MAC), it is undesirable for McAfee ePO to use.

Download

The oui.txt file is located in /usr/share/misc/ on most Linux distributions.


oui.txt Downloads

Sanitized oui.txt.bz2Sat, 02 Oct 2021 03:10:19 -0300 • 902.1 kB (902,150 bytes)bzip2

Sanitized oui.txt.gzSat, 02 Oct 2021 03:10:19 -0300 • 1.3 MB (1,258,407 bytes)gzip

Sanitized oui.txt.zipSat, 02 Oct 2021 03:10:19 -0300 • 1.3 MB (1,258,545 bytes)Zip

Sanitized oui.txtSat, 02 Oct 2021 03:10:19 -0300 • 4.6 MB (4,579,956 bytes)ASCII

Orig. IEEE oui.txtUpdated daily and available on the IEEE website • ASCII


Sanitized IEEE OUI Data (oui.txt) Update Client Download

Sanitized IEEE OUI Data (oui.txt) Update Client sanitized-oui.txt-update v1.03
Tue, 09 Jul 2019 10:30:12 -0300 • 4.0 kB (4,039 bytes)bash shell script


oui.txt Comparison

A juxtaposition comparison of the original and sanitized oui.txt files can be attained using sdiff from the GNU diffutils package.

sdiff -Wia original_oui.txt sanitized_oui.txt | less

Nmap MAC Prefixes

We also maintain and have made available a nmap-mac-prefixes file created from the sanitized oui.txt edition with abridging vendor name logic applied.

nmap-mac-prefixes Download

nmap-mac-prefixes Sat, 02 Oct 2021 03:10:22 -0300 • 560.1 kB (560,089 bytes) • ASCII


Nmap MAC Address Scan

The nmap-mac-prefixes file is used by Nmap to output meaningful OUI vendor names for MAC addresses it detects by matching the three-byte prefix taken from the MAC address and looking for a match in nmap-mac-prefixes file. It's also used in other nmap features. The Nmap nmap-mac-prefixes file can typically be found in /usr/share/nmap/ on most Linux distributions.

An example of this can be seen by performing a nmap scan of a local network. In this example the 192.168.0.0/24 LAN segment is scanned using the following:

nmap -n -sP -PS -PE -PP -PM 192.168.0.0/24 | grep MAC
ephor ~ # nmap -n -sP -PS -PE -PP -PM 192.168.0.0/24 | grep MACMAC Address: XX:XX:XX:XX:XX:XX (Cisco)MAC Address: XX:XX:XX:XX:XX:XX (AOpen)MAC Address: XX:XX:XX:XX:XX:XX (ASUS)MAC Address: XX:XX:XX:XX:XX:XX (Intel)MAC Address: XX:XX:XX:XX:XX:XX (Linksys)MAC Address: XX:XX:XX:XX:XX:XX (Dell)MAC Address: XX:XX:XX:XX:XX:XX (Dell)MAC Address: XX:XX:XX:XX:XX:XX (HP)MAC Address: XX:XX:XX:XX:XX:XX (HP)MAC Address: XX:XX:XX:XX:XX:XX (Intel)MAC Address: XX:XX:XX:XX:XX:XX (OKI Electric)MAC Address: XX:XX:XX:XX:XX:XX (D-Link)MAC Address: XX:XX:XX:XX:XX:XX (Kingston)MAC Address: XX:XX:XX:XX:XX:XX (Dell)MAC Address: XX:XX:XX:XX:XX:XX (Brother)MAC Address: XX:XX:XX:XX:XX:XX (Xerox)ephor ~ # _

Arpwatch ethercodes.dat

Arpwatch is an Ethernet monitor tool by Network Research Group (NRG). The ethercodes.dat distributed with the NRG Arpwatch package archive is somewhat dated, Jul 22, 2006. The format of this data file is similar enough to the nmap-mac-prefixes file that it is rather trivial to generate an updated ethercodes.dat from it.

See Updating ethercodes.dat Ethernet vendor codes on the DTU IT Wiki for a working example.

The ethercodes.dat file can be found in /usr/share/arpwatch/ or /var/lib/arpwatch/ on most installations.

ethercodes.dat Download

ethercodes.dat Sat, 02 Oct 2021 03:10:22 -0300 • 652.4 kB (652,375 bytes) • ASCII



Arp-scan ieee-oui.txt

Arp-scan is a local network ARP host scanning and fingerprinting tool.

The arp-scan package provides a Perl script to update it's ieee-oui.txt file. The default URL is that of the original IEEE oui.txt data. The -u parameter for get-oui can be used to specify the URL to fetch the raw OUI data from instead of the default.

Updating arp-scan ieee-oui.txt

The arp-scan ieee-oui.txt data file in /usr/share/arp-scan/ or /usr/local/share/arp-scan/ can be updated with the latest sanitized oui.txt data with the following:

cd /usr/share/arp-scan/ && get-oui -u https://linuxnet.ca/ieee/oui.txt

If you've recently updated the oui.txt file on the localhost, you can update the arp-scan /usr/share/arp-scan/ieee-oui.txt file using the local oui.txt file as follows:

cd /usr/share/arp-scan/ && get-oui -u file:///usr/share/misc/oui.txt

Alternative arp-scan using nmap-mac-prefixes

The arp-scan ieee-oui.txt file shares the same format as the nmap-mac-prefixes file and thus it can be used with arp-scan using the --ouifile option.

Device Lookup By Mac Address

arp-scan --ouifile=/usr/share/nmap/nmap-mac-prefixes -lI eth0luger ~ # arp-scan --ouifile=/usr/share/nmap/nmap-mac-prefixes -lI eth0Interface: eth0, datalink type: EN10MB (Ethernet)Starting arp-scan 1.9.5 with 256 hosts (https://github.com/royhills/arp-scan)192.168.0.1 XX.XX.XX.XX.XX.XX Cisco192.168.0.2 XX.XX.XX.XX.XX.XX Netgear192.168.0.3 XX.XX.XX.XX.XX.XX Netgear192.168.0.4 XX.XX.XX.XX.XX.XX Ubiquiti192.168.0.5 XX.XX.XX.XX.XX.XX Ubiquiti192.168.0.6 XX.XX.XX.XX.XX.XX Ubiquiti192.168.0.10 XX.XX.XX.XX.XX.XX Linksys192.168.0.11 XX.XX.XX.XX.XX.XX HP192.168.0.15 XX.XX.XX.XX.XX.XX HP192.168.0.20 XX.XX.XX.XX.XX.XX Apple192.168.0.21 XX.XX.XX.XX.XX.XX Apple192.168.0.22 XX.XX.XX.XX.XX.XX ASUS192.168.0.39 XX.XX.XX.XX.XX.XX ASUS192.168.0.40 XX.XX.XX.XX.XX.XX VMware192.168.0.41 XX.XX.XX.XX.XX.XX Ooma192.168.0.42 XX.XX.XX.XX.XX.XX Dell192.168.0.43 XX.XX.XX.XX.XX.XX Dell192.168.0.44 XX.XX.XX.XX.XX.XX Dell192.168.0.45 XX.XX.XX.XX.XX.XX ASUS192.168.0.100 XX.XX.XX.XX.XX.XX Dell192.168.0.105 XX.XX.XX.XX.XX.XX WD192.168.0.107 XX.XX.XX.XX.XX.XX HP192.168.0.108 XX.XX.XX.XX.XX.XX Epson192.168.0.220 XX.XX.XX.XX.XX.XX Samsung192.168.0.225 XX.XX.XX.XX.XX.XX Samsung192.168.0.226 XX.XX.XX.XX.XX.XX Huawei26 packets received by filter, 0 packets dropped by kernelEnding arp-scan 1.9.5: 256 hosts scanned in 1.885 seconds (135.81 hosts/sec). 26 respondedluger ~ # _
  • Advertisement

  • Adamo: address database with openoffice v.1.1OpenOffice address book: Address management for OpenOffice.org. It's based on a OpenOffice form and macros and allows the management of addresses for persons and corporations including managing distribution lists and groups. Currently only in ...
  • NLSO-ADDRESS, Global Address Database v.1.0An address & contact manager designed to use UNICODE & link the the NLSO-WEB system to share NON-PERSONAL address data This will enable the creation of applications which can print an address in English & Hebrew, or English & Chinese for ...
  • Mahogany mail and news client v.0.67An extremely configurable portable GUI email and news client for Windows/Unix (including OS X) with IMAP, POP3, SMTP, and NNTP support, SSL, flexible addressdatabase, Python scripting, powerful filtering, and many other features for advanced ...
  • IP2Location IP-COUNTRY-REGION-CITY-ISP Database v.August.2012IP2Location IP-COUNTRY-REGION-CITY-ISP is commercial lookup database that translates IP address to country, region, city and Internet Service Provider (ISP). Developers use this component for projects related to web, and client applications.
  • IP2Location IP-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE Database v.August.2012IP2Location IP-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE is commercial geolocation database that translates IP address to country, region, city, ISP, latitude, longitude and zip code. Developers use this component for multiple projects.
  • IP2Location IP-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE-ISP-DOMAIN Database v.August.2012IP2Location IP-COUNTRY-REGION-CITY-LATITUDE-LONGITUDE-ZIPCODE-ISP-DOMAIN is commercial lookup database that translates IP address to country, region, city, ISP, latitude, longitude, zip code and domain name.
  • YAPAB (Yet Another PHP Address Book) v.b.0.1b2YAPAB is an address entry collection system based on PostgreSQL (also can be ported to other database like MySQL), PHP and PHP PEAR. It has lot`s of features like: User accounts with adjustable permissions, Multi-Language support, IM between users...
  • IP-COUNTRY-CITY-WEATHER Database v.October.2012IP address to country, time zone, latitude, longitude, weather station code.
  • IP-CITY-TIMEZONE-AREACODE Database v.October.2012IP address to country, city, latitude, longitude, zip code, IDD and area code.
  • Database Icon Set v.2010.1Database Icon Set is a collection of appealing hand-made icons for use in various database products, including software applications, information web sites and presentations. The icons have bright color palette, smooth and well-rounded edges.
  • Database Software Icons v.2012.1High quality icons catch user's attention and make the first impression of a program thus playing a key part in building the image of any software and its developer. Have no restraints in choosing an icon of your dream with Database Software Icons.
  • Perfect Database Icons v.2011.5Perfect Database Icons is a collection of wonderful hand-made icons for use in various database products, including software applications, information web sites and presentations. The icons have bright color palette, smooth and well-rounded edges.
  • Picture Address Book for Mac v.6.0.5Picture Address Book is a telephone and address program fully integrated with Mac OS X that allows you to quickly and easily manage addresses, phone numbers, URLs and Email addresses.
  • Australian Postal Code Database v.1.1Detailed database of Australia cities, post codes, country code, latitude, longitude, admin name in a single package. This information can be used to design auto fill forms for websites, blogs, forums etc. The latitude and longitude values can be ...
  • DbWrench - Database Design Software v.4.2.5DbWrench is a database design and synchronization software. It is designed to increase the productivity of database developers by making creating and modifying databases much easier.
  • Valentina Office Database Server v.3.5Valentina Office Database Server 3.5 is a simple to use, yet sophisticated database server which is designed specially for businesses of any size.Unique Valentina minutes-to-seconds speed combined with standards support for Valentina SQL, XML and ...
  • TREE SMS Address Book Plug-In for Mac OS v.1.1.1A service who sales SMS packages without advisement, worldwide delivering without roaming costs. TREE SMS offers different interfaces to send your previously bought SMS.Mac OS X Address Book: Direct import from you OS X Addressbook to the ...
  • Perfect Database Icons for Mac OS v.2009.3A collection of royalty-free ready-made icons for use in various database products, including software applications, information websites and presentations. The icons have been carefully created pixel by pixel by professional artists. They shine ...
  • IP2Location IP-IDDCODE-AREACODE Database v.October.2012IP address to country, IDD code, area code, net speed, ZIP Code, ISP, domain.
  • Area Code Database (Platinum Edition) v.July-September.North American area codes NPA/NXX database one month subscription service.
Address Database software by TitlePopularityFreewareLinuxMac
Today's Top Ten Downloads for Address Database
Mac Address Database Download
  • IP2Location IP-COUNTRY-REGION-CITY-ISP IP2Location IP-COUNTRY-REGION-CITY-ISP is commercial lookup
  • IP2Location IP2Location
  • Perfect Database Icons for Mac OS A collection of royalty-free ready-made icons for use in
  • Target Country by IP Address Target Country by IP Address is a complete web-based
  • Database Software Icons High quality icons catch user's attention and make the first
  • United States ZIP Code Database (Gold + United States ZIP Codes Database Subscription in text,
  • Area Code Database (Platinum Edition) North American area codes NPA/NXX database one month
  • US ZIP Code Business Patterns Database United States ZIP Codes Database Subscription in text,
  • IP2Location IP2Location
  • United States ZIP Code Database (Gold + United States ZIP Codes Database Subscription in text,

Mac Address Manufacturer Lookup

Visit HotFiles@Winsite for more of the top downloads here at WinSite!