A network engineer executes the following configuration commands on a Cisco router interface with a MAC address of :
text
interface GigabitEthernet0/0/0
ipv6 address 2001:db8:abc:10::/64 eui-64
ipv6 address fe80::1 link-local
Which two statements accurately describe the resulting IPv6 addressing and prefix properties for this interface? (Select two.)
- The dynamically generated Global Unicast Address on the interface is .Answer
- The explicitly configured link-local address replaces the auto-generated EUI-64 link-local address while staying within the reserved scope.Answer
- CThe automatically generated Global Unicast Address on the interface is because EUI-64 preserves the original MAC address byte values.
- DThe interface prefix length of allows for usable host addresses after deducting reserved subnet network and broadcast identifiers.
Answer
The correct statements are that the dynamically generated Global Unicast Address is 2001:db8:abc:10:56e1:adff:fe12:3456/64, and the explicitly configured link-local address fe80::1 replaces the auto-generated EUI-64 link-local address within the fe80::/10 scope.
The EUI-64 process takes the 48-bit MAC address 54e1.ad12.3456, inserts FFFE in the middle to make it 64 bits, and flips the 7th bit of the first byte from 54 hex to 56 hex, yielding the interface ID 56e1:adff:fe12:3456. Combining this with the configured prefix 2001:db8:abc:10::/64 produces 2001:db8:abc:10:56e1:adff:fe12:3456/64. Additionally, manual link-local configuration overrides the default EUI-64 link-local address and uses the fe80::/10 scope.
Step-by-Step Solution
Key Concept
EUI-64 Interface ID Generation and IPv6 Address Scopes
Estimated Time:2m 0s