A network engineer is configuring a Cisco router interface with a MAC address of `0050.568A.B1C2`. The interface is enabled for IPv6 using SLAAC with EUI-64 interface identifier generation under the prefix `2001:db8:1:1::/64`. Additionally, the engineer plans to configure a Unique Local Address (ULA) on the same interface. Which TWO statements regarding the IPv6 addressing for this interface are correct? (Select TWO.)
- The dynamically generated link-local IPv6 address on the interface is `fe80::250:56ff:fe8a:b1c2`.Answer
- Any valid Unique Local Address configured on this interface must fall within the prefix range `fc00::/7`.Answer
- CThe automatically generated EUI-64 interface identifier derived from the MAC address is `0050:56ff:fe8a:b1c2`.
- DThe `2001:db8:1:1::/64` subnet contains exactly usable host addresses because the all-zeros address is reserved for the subnet ID and the all-ones address is reserved for the IPv6 broadcast domain.
Answer
The correct statements are that the dynamically generated link-local IPv6 address is `fe80::250:56ff:fe8a:b1c2` and that any Unique Local Address must fall within the `fc00::/7` prefix block.
Generating an EUI-64 address from MAC `0050.568A.B1C2` involves inserting `FFFE` into the middle (`0050:56FF:FE8A:B1C2`) and toggling the 7th bit from 0 to 1 (`00` hex becomes `02` hex), producing interface ID `0250:56ff:fe8a:b1c2`. Prepended with `fe80::`, this forms the valid link-local address `fe80::250:56ff:fe8a:b1c2`. Furthermore, RFC 4193 specifies `fc00::/7` as the designated address range for IPv6 Unique Local Addresses.
Step-by-Step Solution
Key Concept
EUI-64 Interface Identifier Generation & IPv6 Address Scopes