Security

MAC Address Generator

Input

Output

Run process to generate output.

Frequently Asked Questions

What is a MAC address?
A MAC (Media Access Control) address is a 48-bit hardware identifier assigned to every network interface. Written as 6 colon-separated hex pairs (AA:BB:CC:DD:EE:FF), it is used for device identification on local networks. Unlike IP addresses, MAC addresses are assigned by manufacturers — though modern devices can randomize them.
What is a locally administered MAC address?
The second-least-significant bit of the first byte indicates administration: 0 = globally unique (manufacturer-assigned), 1 = locally administered (overridden by software). Generated/test MAC addresses should set this bit to 1 (e.g. x2:xx:xx:xx:xx:xx) so they don't conflict with real hardware MACs.
What is a unicast vs. multicast MAC address?
The least-significant bit of the first byte: 0 = unicast (sent to one recipient), 1 = multicast (sent to a group). FF:FF:FF:FF:FF:FF is the broadcast address (sent to all devices on the segment). Generated MACs should use a unicast address (first byte ends in 0 or 2, not 1, 3, etc.).