An interface on a Cisco IOS router is dynamically generating its IPv6 address using the EUI-64 standard. Output from the command `show ipv6 interface GigabitEthernet0/0` reveals that the link-local address assigned to the interface is `fe80::1a2b:3cff:fe4d:5e6f`. Based on this address, what is the burned-in MAC address of the Ethernet interface?
- A1a2b.3c4d.5e6f
- 182b.3c4d.5e6fAnswer
- C102b.3c4d.5e6f
- D182b.3cff.fe4d
Answer
The MAC address of the interface is 182b.3c4d.5e6f.
To reverse the EUI-64 generation process and recover the original 48-bit MAC address from the interface ID `1a2b:3cff:fe4d:5e6f`: first, remove the inserted `FFFE` bytes from the midpoint to get `1a2b:3c4d:5e6f`. Next, convert the first byte (`1A` hex) to binary (`0001 1010`) and flip the 7th bit (the Universal/Local bit), resulting in `0001 1000` (`18` hex). Assembling the modified octets gives the hardware MAC address `182b.3c4d.5e6f`.
Step-by-Step Solution
Key Concept
Reversing the EUI-64 interface identifier process to determine the burned-in MAC address