11.4k views
1 vote
Configure the ipv6 dhcp relay command on R2 interface G0/0/1, specifying the destination address of the G0/0/0 interface on R1. Also configure the managed-config-flag command.

1 Answer

7 votes

Final answer:

To configure an IPv6 DHCP relay and the managed-config-flag on R2's G0/0/1 interface, one must enter specific CLI commands to specify the destination address of R1's G0/0/0 interface and set the flag that influences DHCP client behavior.

Step-by-step explanation:

The task outlined involves configuring an IPv6 DHCP relay on a router interface. To add the DHCP relay functionality to the R2's G0/0/1 interface, one must use the Cisco IOS command line interface (CLI). The command syntax is generally as follows:

  1. Enter configuration mode by typing configure terminal.
  2. Go into the specific interface configuration with interface G0/0/1.
  3. Use the ipv6 dhcp relay command followed by the destination address which, in this case, is the G0/0/0 interface on R1.
  4. Finally, set the managed-config-flag, which influences the DHCP client's behavior in obtaining configuration parameters.

An example of the commands:
Router(config)# interface G0/0/1
Router(config-if)# ipv6 dhcp relay destination G0/0/0 R1
Router(config-if)# ipv6 nd managed-config-flag

This completes the configuration process, enabling R2 to relay DHCP requests to R1's specified interface.

User Murray Sagal
by
8.5k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.