An administrator enables IPv6 on a router interface using the prefix with EUI-64 automatic interface identifier generation. If the interface MAC address is `1C1D.86AB.CDEF`, which IPv6 address is dynamically assigned to the interface?
- 2001:db8:feed:1:1e1d:86ff:feab:cdefAnswer
- B2001:db8:feed:1:1c1d:86ff:feab:cdef
- C2001:db8:feed:1:1e1d:86fe:ffab:cdef
- D2001:db8:feed:1:1c1d:86fe:ffab:cdef
Answer
2001:db8:feed:1:1e1d:86ff:feab:cdef
Generating an IPv6 EUI-64 interface identifier from a 48-bit MAC address requires splitting the MAC address into two 24-bit halves, inserting the hexadecimal sequence FFFE in the center, and flipping the 7th bit (Universal/Local bit) of the first byte. For MAC address 1C1D.86AB.CDEF, the first byte 0x1C (binary 00011100) becomes 0x1E (binary 00011110) after flipping the 7th bit. Inserting FFFE into the center yields the 64-bit interface ID 1e1d:86ff:feab:cdef, which combines with prefix 2001:db8:feed:1::/64 to form 2001:db8:feed:1:1e1d:86ff:feab:cdef.
Step-by-Step Solution
Key Concept
EUI-64 Interface Identifier Generation