A network engineer is configuring a Cisco router interface with the command `ipv6 address 2001:db8:cafe:100::/64 eui-64`. The burn-in MAC address of the interface is `1866.DA12.3456`. Based on the IEEE EUI-64 process, which IPv6 global unicast address will be dynamically assigned to this interface?
- 2001:db8:cafe:100:1a66:daff:fe12:3456Answer
- B2001:db8:cafe:100:1866:daff:fe12:3456
- C2001:db8:cafe:100:1a66:dafe:ff12:3456
- D2001:db8:cafe:100:1a66:daff:fe12:3457
Answer
The dynamically generated IPv6 address assigned to the interface is 2001:db8:cafe:100:1a66:daff:fe12:3456.
The EUI-64 creation process takes the 48-bit MAC address (1866.DA12.3456), splits it into two 24-bit pieces, inserts FFFE in the middle (1866:DAFF:FE12:3456), and flips the 7th bit of the first byte (0x18 = 0001 1000 becomes 0x1A = 0001 1010). Appending this 64-bit interface ID to the specified 2001:db8:cafe:100::/64 prefix yields 2001:db8:cafe:100:1a66:daff:fe12:3456.
Step-by-Step Solution
Key Concept
EUI-64 Interface Identifier Generation
Estimated Time:1m 30s