LOGBOOK

HELP

Quiz Entry - updated: 2026.07.05

What is the EUI-64 process for generating an IPv6 Interface ID?

Split the 48-bit MAC in half, insert fffe in the middle, and flip the 7th bit (U/L bit) of the first byte — giving a 64-bit Interface ID.

EUI-64: split MAC, insert ff:fe, flip the U/L bit to form the interface ID

* The EUI-64 derivation worked end to end (fc:99:47:75:ce:e0 → fe99:47ff:fe75:cee0). *

EUI-64 (Extended Unique Identifier - 64 bit):

A method to create a 64-bit Interface ID from the 48-bit MAC address.

EUI-64 Process Steps:

Step 1: Split the MAC address in half

MAC: fc:99:47:75:ce:e0
     fc:99:47 | 75:ce:e0

Step 2: Insert fffe in the middle

fc:99:47:ff:fe:75:ce:e0

Step 3: Flip the 7th bit (Universal/Local bit)

fc = 1111 1100
     ───────↑ 7th bit
fe = 1111 1110 (bit flipped from 0 to 1)

Result:

MAC:            fc:99:47:75:ce:e0
EUI-64 IID:     fe99:47ff:fe75:cee0

Complete IPv6 address with prefix 2001:db8:acad:1::/64:

2001:db8:acad:1:fe99:47ff:fe75:cee0

Security note: EUI-64 exposes the MAC address, making device tracking possible. Many OS now use random Interface IDs instead.

Go deeper:

From Quiz: NETW1 / IPv6 Addressing | Updated: Jul 05, 2026