61.8k views
2 votes
Create an IPv6 DHCP pool on R1 named R1-STATELESS. As a part of that pool, assign the DNS server address as 1 and the domain name as:______

User Jgritty
by
8.9k points

1 Answer

5 votes

Final answer:

To configure an IPv6 DHCP pool named R1-STATELESS on R1 with a DNS server address and domain name, access the router's configuration mode, enter the DHCP configuration, and set the DNS and domain name accordingly.

Step-by-step explanation:

To create an IPv6 DHCP pool named R1-STATELESS on a router named R1, you will need to access the router's configuration mode. Once in the global configuration mode, you'll define the DHCP pool using the dhcpv6 pool command followed by the name of the pool. After entering the DHCP pool configuration mode, you can set the DNS server address and the domain name using the respective commands.

Here is a step-by-step guide for your configuration:

  1. Access the router's configuration mode:
    R1#configure terminal
  2. Enter the DHCP configuration mode:
    R1(config)#ipv6 dhcp pool R1-STATELESS
  3. Assign the DNS server address. If by '1' you mean the address is 0001, which is not a typical address, but for the purpose of this example we'll use it:
    R1(config-dhcp)#dns-server 0001::1
  4. Set the domain name (insert the actual domain name in place of domain.example):
    R1(config-dhcp)#domain-name domain.example

Ensure you replace the placeholder for the domain name with the actual domain you wish to use. The examples use a generic address for the DNS server and a placeholder domain name, but in a real-world scenario, you would use the correct DNS address provided to you.

User Naveen Yedugani
by
8.1k points