networking infrastructure hardware internet

Network Hardware Identifiers: OUI, EUI-48, and Autonomous Systems

Understanding the unique identifiers that make global networking possible, from the MAC address on your network card to the Autonomous Systems that route the internet.

2026-04-12 Use This Tool

Network Hardware Identifiers: OUI, EUI-48, and Autonomous Systems

In a world connected by trillions of devices, how do we ensure that a single data packet finds its way from a server in Dublin to a smartphone in Tokyo? This global coordination relies on a hierarchy of unique identifiers, each operating at a different layer of the OSI model.

In this guide, we will break down the structure of hardware identifiers like EUI-48, the importance of the Organizationally Unique Identifier (OUI), and the role of Autonomous System Numbers (ASN) in global BGP routing.


1. The Local Identity: MAC Addresses and EUI-48

Every network interface—whether it's the Wi-Fi card in your laptop or the Ethernet port on a server—is assigned a unique physical address known as a MAC address.

EUI-48: The Standard

The IEEE standard for MAC addresses is EUI-48 (Extended Unique Identifier). It consists of 48 bits, typically written as six groups of two hexadecimal digits (e.g., 00:1A:2B:3C:4D:5E).

The Structure of EUI-48

A 48-bit MAC address is divided into two 24-bit halves:

  1. OUI (Organizationally Unique Identifier): The first 24 bits. This is a unique block of addresses assigned to a specific manufacturer (like Apple, Cisco, or Intel) by the IEEE.
  2. NIC-Specific Identifier: The last 24 bits. The manufacturer is responsible for ensuring that each device they produce has a unique value in this range.

EUI-64 and the Future

As the Internet of Things (IoT) grows, the 48-bit address space is becoming crowded. The EUI-64 standard (64 bits) was developed to provide a much larger address space. Many modern protocols, such as IPv6 (via the SLAAC mechanism), convert 48-bit MAC addresses into 64-bit identifiers by inserting FF:FE in the middle.


2. The Manufacturer's Signature: OUI

The OUI (Organizationally Unique Identifier) is the "prefix" that identifies the hardware vendor.

Identifying Vendors

If you look up the OUI 00:1B:44, you'll find it belongs to SanDisk. If you see 00:00:0C, that's Cisco. This system allows network administrators to identify the type of hardware connected to their network just by looking at the MAC address.

Local vs. Universal Addresses

MAC addresses also contain two special bits:

  • U/L Bit (Universal/Local): If set to 1, the address is "locally administered" (e.g., a software-defined MAC address). If 0, it is a "universally" unique burned-in address.
  • I/G Bit (Individual/Group): If set to 1, the address is a "multicast" or "broadcast" address. If 0, it is a "unicast" address for a single device.

3. The Internet's Backbone: Autonomous System Numbers (ASN)

While MAC addresses handle local communication (Layer 2), Autonomous System Numbers (ASN) are used for global routing (Layer 3/4).

What is an Autonomous System (AS)?

The internet is not a single network; it is a "network of networks." An Autonomous System is a large network or group of networks (like Comcast, Google, or Harvard University) that has a unified routing policy.

The Role of ASN

Every AS is assigned a unique ASN—a 16-bit or 32-bit number. ASNs are crucial for BGP (Border Gateway Protocol), the protocol that routers use to exchange information about how to reach different IP address blocks.

  • Public ASNs: Used for routing on the public internet.
  • Private ASNs: Used within a single organization for internal routing.

4. How They Work Together

  1. MAC/EUI-48: Your device uses this to talk to your local Wi-Fi router.
  2. IP Address: Your router uses this to identify your device within the larger internet.
  3. ASN: Your ISP uses this to figure out which neighbor ISP it should hand your data packet to so it eventually reaches the destination AS.

5. Security and Privacy: MAC Randomization

In the past, because a MAC address was "burned in," it could be used to track people as they moved between different Wi-Fi networks. To combat this, modern operating systems (iOS, Android, Windows) now use MAC Randomization.

When scanning for networks, your phone will generate a random, "locally administered" MAC address. This hides your real hardware EUI-48 and prevents retailers and malicious actors from tracking your movements.


Conclusion

From the 24-bit OUI that identifies a manufacturer to the 32-bit ASN that identifies a global ISP, the architecture of network identifiers is a masterpiece of distributed coordination. Understanding these values is essential for anyone working in networking, cybersecurity, or infrastructure.

Next time you see a MAC address, remember: it's not just a random string of hex; it's a carefully structured identifier that tells a story of hardware origins and network topology.