nerdexam
Cisco

200-301 · Question #1637

Lab Simulation 47 Guidelines This is a lab item in which tasks will be performed on virtual devices. - Refer to the Tasks tab to view the tasks for this lab item. - Refer to the Topology tab to access

The user must configure IPv4 and IPv6 addresses on R1 and R2's e0/0 interfaces based on provided subnets and specific host addressing rules, then verify connectivity.

Submitted by manish99· Mar 5, 2026IP Connectivity

Question

Lab Simulation 47 Guidelines This is a lab item in which tasks will be performed on virtual devices. - Refer to the Tasks tab to view the tasks for this lab item. - Refer to the Topology tab to access the device console(s) and perform the tasks. - Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window. - All necessary preconfigurations have been applied. - Do not change the enable password or hostname for any device. - Save your configurations to NVRAM before moving to the next item. - Click Next at the bottom of the screen to submit this lab and move to the next question. - When Next is clicked, the lab doses and cannot be reopened. Topology Tasks Physical connectivity between R1 and R2 has been established. IP connectivity must be established between both routers. Ping must be successful between both routers on IPv4 and IPv6. 1. Configure IPv4 Addressing between R1 and R2 using the first usable host IP on R1 and last usable host IP on R2. 2. Configure IPv6 addressing between R1 and R2 using the subnet provided and the .X host addressing derived from within IPv4. Answer: See the below explanation

Exhibits

200-301 question #1637 exhibit 1
200-301 question #1637 exhibit 2

Explanation

The user must configure IPv4 and IPv6 addresses on R1 and R2's e0/0 interfaces based on provided subnets and specific host addressing rules, then verify connectivity.

Approach. The correct interaction involves accessing the console of each router (R1 and R2) and configuring their respective e0/0 interfaces with the specified IPv4 and IPv6 addresses, then enabling the interfaces and saving the configuration. Finally, connectivity must be verified using the ping command.

1. Calculate IP Addresses based on Tasks:

  • IPv4 Subnet 10.0.12.0/27:
    • The subnet mask for /27 is 255.255.255.224.
    • The network address is 10.0.12.0.
    • The first usable host IP is 10.0.12.1 (for R1).
    • The broadcast address is 10.0.12.31.
    • The last usable host IP is 10.0.12.30 (for R2).
  • IPv6 Subnet 2001:db8:12::/122:
    • The task specifies using '.X host addressing derived from within IPv4'.
    • For R1, the IPv4 host ends in .1, so the IPv6 host portion will be ::1. Thus, R1's IPv6 address is 2001:db8:12::1/122.
    • For R2, the IPv4 host ends in .30, so the IPv6 host portion will be ::30. Thus, R2's IPv6 address is 2001:db8:12::30/122.

2. Configure R1 (CLI Commands):

enable
configure terminal
interface e0/0
ip address 10.0.12.1 255.255.255.224
ipv6 address 2001:db8:12::1/122
no shutdown
exit
copy running-config startup-config

3. Configure R2 (CLI Commands):

enable
configure terminal
interface e0/0
ip address 10.0.12.30 255.255.255.224
ipv6 address 2001:db8:12::30/122
no shutdown
exit
copy running-config startup-config

4. Verify Connectivity (CLI Commands):

  • From R1:
    • ping 10.0.12.30 (Should be successful)
    • ping 2001:db8:12::30 (Should be successful)
  • From R2:
    • ping 10.0.12.1 (Should be successful)
    • ping 2001:db8:12::1 (Should be successful)

Common mistakes.

  • common_mistake. Common mistakes include incorrect IPv4 subnet calculations (e.g., using the network or broadcast address as a host IP, or an incorrect subnet mask). Another frequent error is misinterpreting the IPv6 host addressing rule, such as using default incremental addresses (::1, ::2) instead of deriving from the IPv4 address. Forgetting the no shutdown command on the interface is a common oversight that leaves the interface administratively down and prevents connectivity. Lastly, failing to save the configuration (copy running-config startup-config or write memory) would result in losing all changes upon system reboot or exam submission.

Concept tested. Core concepts include IPv4 subnetting to identify usable host addresses and subnet masks, IPv6 addressing fundamentals including prefix lengths and host identifier derivation, and basic Cisco IOS interface configuration commands for both IPv4 and IPv6 protocols. It also tests the ability to follow specific instructions for address assignment and perform fundamental network verification using the ping command.

Topics

#IPv4 addressing#IPv6 addressing#Cisco router configuration#Network connectivity testing

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice