An engineer enters the following configuration command on a Cisco router interface whose hardware MAC address is `0A00.2712.3456`:
`R1(config-if)# ipv6 address 2001:db8:acad:b000::/64 eui-64`
Which fully compressed IPv6 global unicast address will be dynamically assigned to this interface?
- 2001:db8:acad:b000:800:27ff:fe12:3456Answer
- B2001:db8:acad:b000:a00:27ff:fe12:3456
- C2001:db8:acad::800:27ff:fe12:3456
- D2001:db8:acad:b000:800:27fe:ff12:3456
Answer
The correct dynamically generated address is 2001:db8:acad:b000:800:27ff:fe12:3456.
To derive the EUI-64 interface identifier from MAC address 0A00.2712.3456, insert FFFE between the 24-bit OUI and 24-bit NIC identifier to get 0A00:27FF:FE12:3456. Invert the 7th bit of the first hex byte (0A = 0000 1010 -> 08 = 0000 1000), resulting in 0800:27FF:FE12:3456. Combining this with prefix 2001:db8:acad:b000::/64 and suppressing the leading zero in 0800 yields 2001:db8:acad:b000:800:27ff:fe12:3456.
Step-by-Step Solution
Key Concept
EUI-64 Interface Identifier Generation
Estimated Time:2m 0s