Skip to content
faker.tools
All 79

Plate VI · Network, Web & System Telemetry Generators

MAC Address Generator

Unicast, multicast and vendor-prefixed addresses in four formats.

#MAC Address
1ae:be:b4:7b:4a:13
2f2:5c:c3:dc:75:5f
302:6d:87:92:05:04
4f6:2e:c2:2d:00:b1
51a:dc:41:6b:3d:85
63a:4e:03:e5:49:4d
7a6:b8:90:13:09:4a
886:a0:a4:4e:65:6d
9f2:df:76:d4:37:63
1022:35:1a:1d:ef:27
10 rows · 179 BGenerated in your browser · MAC Address Generator

The two low bits of a MAC address's first octet carry meaning: bit 0 marks multicast, bit 1 marks locally administered. Generated addresses here set them correctly, so a locally-administered address really is one rather than just looking like it.

What you can control

  • Locally-administered addresses have bit 1 set, which is what that range is for.
  • Vendor mode uses real OUI prefixes — Apple, Google, Raspberry Pi, VMware, QEMU — with the vendor named.
  • Four separator styles including the Cisco three-group dotted form.
  • Multicast and broadcast addresses for testing the code paths that treat them differently.

What this is not

Vendor prefixes are real registered OUIs, but the device portion is generated, so no physical adapter carries these addresses.

Questions

What does locally administered mean?

The address was assigned by a network administrator or a hypervisor rather than burned in by a manufacturer. Bit 1 of the first octet marks it, and that range will never collide with a real vendor's.

Are the vendor prefixes real?

The three-octet OUI is genuinely registered to that company. The remaining three octets are generated, so the full address does not identify a device.

Why does Cisco use a different format?

Cisco IOS displays MAC addresses as three dot-separated groups of four hex digits instead of six colon-separated pairs. Same 48 bits, different rendering.

Next in Network

All 10