A network engineer configures SLAAC on a dual-stack Cisco IOS router interface with a burned-in MAC address of `a036.9f12.3456`. Based on standard IEEE EUI-64 calculations, which IPv6 link-local address is automatically assigned to this interface?
- fe80::a236:9fff:fe12:3456Answer
- Bfe80::a036:9fff:fe12:3456
- Cfe80::a236:9fff:ffff:3456
- Dfc00::a236:9fff:fe12:3456
Answer
The automatically assigned link-local address is fe80::a236:9fff:fe12:3456.
The correct answer derives the link-local address by taking the MAC address a036.9f12.3456, inserting FFFE in the middle (a036.9fff.fe12.3456), and inverting the 7th bit of the first byte from 0 to 1 (0xA0 binary 10100000 -> 0xA2 binary 10100010). Combining this 64-bit interface identifier with the link-local prefix FE80:: results in fe80::a236:9fff:fe12:3456.
Step-by-Step Solution
Key Concept
Generating an IPv6 EUI-64 interface identifier from a 48-bit MAC address requires inserting FFFE into the middle of the MAC address, flipping the 7th bit (Universal/Local bit) of the first octet, and prepending the fe80::/10 prefix for link-local addresses.