nerdexam
Cisco

200-301 · Question #1770

Lab Simulation 68 Please use the "Tasks" and "Topology" tabs to complete this lablet. Topology Tasks Configure IPv4 and IPv6 between the two routers by completing the following tasks. Task 1: - Config

The correct answer accurately identifies all usable host addresses for both subnets. For 172.16.16.32/29, the /29 prefix yields 8 total addresses (2^3), making 172.16.16.33 the first usable host and 172.16.16.38 the last usable host (172.16.16.39 is the broadcast). For 2001:db8:1

Submitted by olafpl· Mar 5, 2026CCNA 200-301 Domain: Network Fundamentals - IP Addressing (IPv4 and IPv6 subnetting, interface configuration, and connectivity verification)

Question

Lab Simulation 68 Please use the "Tasks" and "Topology" tabs to complete this lablet. Topology Tasks Configure IPv4 and IPv6 between the two routers by completing the following tasks. Task 1: - Configure R1 with the first usable host IP address in the 172.16.16.32/29 network. - Configure R2 with the last usable host IP address in the 172.16.16.32/29 network. - Verify connectivity using ping. Task 2: - Configure R1 with the first usable host IP address in the 2001:db8:12::34/126 network. - Configure R2 with the last usable host IP address in the 2001:db8:12::34/126 network. Answer: Task 1: IPv4 Addressing We need to address the link R1-R2 using the subnet 172.16.16.32/29.1. 1. Subnet Calculations for 172.16.16.32/29: - Network Address: 172.16.16.32 - Subnet Mask: 255.255.255.248 (A /29 mask means 32 − 29 = 3 host bits, so 23 = 8 total addresses). - Addresses in Subnet: 8 - Broadcast Address: 172.16.16.32 + 8 − 1 = 172.16.16.39 - First Usable Host IP: 172.16.16.32 + 1 = 172.16.16.33 - Last Usable Host IP: 172.16.16.39 − 1 = 172.16.16.38 2. Configuration Commands R1 Configuration configure terminal interface Ethernet0/0 ip address 172.16.16.33 255.255.255.248 no shutdown exit R2 Configuration configure terminal interface Ethernet0/0 ip address 172.16.16.38 255.255.255.248 no shutdown exit 3. Verification Once both configurations are applied, you can ping from R1 to R2: R1# ping 172.16.16.38 Task 2: IPv6 Addressing We need to address the link R1-R2 using the subnet 2001:db8:12::34/126.1. 1. Subnet Calculations for 2001:db8:12::34/126 A /126 mask is used for point-to-point links in IPv6 and is the equivalent of a /30 in IPv4. It allows for 4 total addresses (128 − 126 = 2 host bits, 22 = 4 addresses). - Network Address: 2001:db8:12::34 - Next Network Address: 2001:db8:12::38 (Incrementing the host portion by 4) - First Usable Host IP (R1): The address immediately following the network address, which is 2001:db8:12::35 (since the next network is ...:38, the broadcast/reserved address is ...:37, and the next usable is ...:36). - Last Usable Host IP (R2): The address immediately preceding the broadcast address (or the address two before the next network), which is 2001:db8:12::36. 2. Configuration Commands First, IPv6 routing must be enabled globally on both routers for them to process IPv6 packets. R1 Configuration configure terminal ipv6 unicast-routing interface Ethernet0/0 ipv6 address 2001:db8:12::35/126 no shutdown exit R2 Configuration configure terminal ipv6 unicast-routing interface Ethernet0/0 ipv6 address 2001:db8:12::36/126 no shutdown exit 3. Verification Once both configurations are applied, you can verify IPv6 connectivity: R1# ping 2001:db8:12::36

Exhibits

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

Explanation

The correct answer accurately identifies all usable host addresses for both subnets. For 172.16.16.32/29, the /29 prefix yields 8 total addresses (2^3), making 172.16.16.33 the first usable host and 172.16.16.38 the last usable host (172.16.16.39 is the broadcast). For 2001:db8:12::34/126, the /126 prefix yields 4 total IPv6 addresses (2^2), where ::34 is the network address, ::35 is the first usable host (R1), ::36 is the last usable host (R2), and ::37 is the subnet's broadcast/anycast boundary - making ::35 and ::36 the only two assignable addresses in this /126 block.

Topics

#IPv4 Subnetting#IPv6 Addressing#Router Interface Configuration#Network Address Calculation

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice