A Cisco router interface GigabitEthernet0/1 has a burned-in MAC address of `0050.56a1.b2c3`. The interface is enabled and configured with the Cisco IOS command `ipv6 address fe80::/64 eui-64`. What is the complete compressed IPv6 link-local address assigned to this interface?
Answer: fe80::250:56ff:fea1:b2c3 / fe80::0250:56ff:fea1:b2c3 / FE80::250:56FF:FEA1:B2C3 / FE80::0250:56FF:FEA1:B2C3
Answer
fe80::250:56ff:fea1:b2c3
The standard EUI-64 process converts the 48-bit MAC address `0050.56a1.b2c3` by inserting `FFFE` into the midpoint (`0050.56FF.FEa1.b2c3`) and inverting the 7th bit of the first byte (`00` hex = `00000000` binary -> `00000010` binary = `02` hex). Appending this 64-bit interface identifier `0250:56ff:fea1:b2c3` to the link-local prefix `fe80::/64` yields `fe80::250:56ff:fea1:b2c3` after omitting leading zeros.
Step-by-Step Solution
Key Concept
EUI-64 Link-Local IPv6 Address Calculation
Estimated Time:1m 30s