You are connected to the console of R1. The network uses IPv6 with EUI-64. R1's GigabitEthernet0/0 interface has MAC address 0011.2233.4455. You must configure the interface to generate an IPv6 link-local address using the 'ipv6 enable' command, and also assign a global unicast address 2001:db8:1::/64 using EUI-64. The interface is currently administratively down.
Hints
- •EUI-64 derives the interface ID from the MAC address.
- •The 'ipv6 enable' command generates a link-local address.
- •The interface must be administratively brought up.
! R1 interface GigabitEthernet0/0 ipv6 enable ipv6 address 2001:db8:1::/64 eui-64 no shutdown
Why this answer
The ipv6 enable command explicitly creates a link-local address as required by the scenario. The global unicast address with the eui-64 keyword automatically derives the interface ID from the MAC address. Option B is incorrect because it tries to manually configure a link-local address with eui-64, which is unnecessary and invalid.
Option C omits the ipv6 enable command, failing the explicit requirement. Option D assigns a static host portion instead of using eui-64.
Exam trap
When the question specifically mandates the ipv6 enable command for link-local generation, do not omit it; simply configuring a global unicast address will also create a link-local address, but it does not meet the stated objective.
Why the other options are wrong
Manually configuring a link-local address with the eui-64 keyword is invalid; link-local addresses are automatically generated.
This option does not include the required ipv6 enable command, so it does not satisfy the explicit scenario requirement.
Uses a static host address (::1/64) instead of the eui-64 keyword, so the interface ID will not be generated from the MAC address.
Why candidates pick the wrong answer
Candidates might think they need to explicitly configure the link-local address with EUI-64, similar to the global unicast address.
Candidates might assume that configuring a global unicast address automatically enables IPv6 and generates a link-local address, but that is not the case.
Candidates might think that manually specifying the interface ID is acceptable, but the question explicitly requires EUI-64.