An organization is assigned the IPv6 address block . A network engineer needs to configure a router interface within a new /64 subnet that has a 12-bit subnet ID extension of added to the base /52 prefix. The router interface uses EUI-64 to generate its interface identifier automatically based on its MAC address `0200.4C12.3456`. Which IPv6 Global Unicast Address will be dynamically configured on this interface?
- 2001:db8:1111:2a40::4cff:fe12:3456Answer
- B2001:db8:1111:2a40:200:4cff:fe12:3456
- C2001:db8:1111:a40::4cff:fe12:3456
- D2001:db8:1111:2a40:400:4cff:fe12:3456
Answer
2001:db8:1111:2a40::4cff:fe12:3456
The subnet prefix is derived by adding the subnet ID extension to the base prefix 4th hextet (), producing . For EUI-64 generation from MAC `0200.4C12.3456`, `FFFE` is inserted into the middle (`0200.4CFF.FE12.3456`), and the 7th bit of the first byte (`0x02` = `0000 0010`) is inverted to `0` (`0x00` = `0000 0000`), yielding `0000:4cff:fe12:3456`. Combining these results in `2001:db8:1111:2a40::4cff:fe12:3456`.
Step-by-Step Solution
Key Concept
IPv6 EUI-64 Interface Identifier Generation and Subnet Prefix Calculation