LOGBOOK

HELP

Quiz Entry - updated: 2026.07.05

What are the two methods a SLAAC (Stateless Address Autoconfiguration) host uses to generate its 64-bit interface ID?

Random generation (default on modern OSes like Windows 10) or EUI-64 (Extended Unique Identifier (64-bit)) (derives the ID from the host's MAC (Media Access Control) address).

EUI-64: split 48-bit MAC, insert FF:FE, flip the U/L bit, yielding a 64-bit interface ID.

* EUI-64 interface-ID derivation from a MAC address. *

A 48-bit MAC address showing the OUI and device portions, the basis for EUI-64 derivation.

* 48-bit MAC address structure (basis for EUI-64). — Inductiveload, CC BY-SA 2.5, via Wikimedia Commons. *

Method 1 — Randomly generated:

  • The OS generates a random 64-bit value for the interface ID
  • Default on Windows 10+ and most modern operating systems
  • Preferred for privacy — the address changes and doesn't reveal the MAC address

Method 2 — EUI-64 (Extended Unique Identifier (64-bit)):

  • Takes the 48-bit MAC address (e.g., 00:50:56:B3:ED:D8)
  • Splits it in half and inserts FF:FE in the middle → 0050:56**FF:FE**B3:EDD8
  • Flips the 7th bit (Universal/Local bit) → 0**2**50:56FF:FEB3:EDD8
  • Result: a deterministic 64-bit interface ID derived from hardware

Privacy concern with EUI-64:

  • Because the interface ID is derived from the MAC address, a device can be tracked across networks — same MAC always produces the same interface ID
  • This is why modern OSes default to random generation instead

Tip: Both methods can be configured by the user on Windows, Linux, and macOS.

Go deeper:

From Quiz: NETW2 / SLAAC and DHCPv6 | Updated: Jul 05, 2026