You are connected to R1. Configure IPv4 and IPv6 addressing on interfaces G0/0 and G0/1 so that R1 can reach R2's loopback0 (198.51.100.1/32) and R2 can reach R1's loopback0 (203.0.113.1/32). The current configuration has a wrong subnet mask on R1 G0/0 and a missing default gateway on R2, causing reachability failures. Additionally, configure IPv6 using EUI-64 on R1 G0/1 and static IPv6 on R2 G0/1 to enable IPv6 ping between the two routers. All devices are routers.
Hints
- •Check the subnet mask on R1 G0/0: it does not match R2's /30.
- •R2 has no route to reach R1's loopback or the 192.168.1.0/24 network; it needs a default gateway.
- •R2's IPv6 address is on a different subnet (2001:db8:2::/64) than R1's (2001:db8:1::/64); they must be on the same subnet.
! R1 interface GigabitEthernet0/0 ip address 10.0.0.1 255.255.255.252 exit interface GigabitEthernet0/1 ipv6 address 2001:db8:1::/64 eui-64 exit ! R2 interface GigabitEthernet0/1 ip address 192.168.1.2 255.255.255.0 ipv6 address 2001:db8:1::2/64 exit ip route 0.0.0.0 0.0.0.0 10.0.0.1
Why this answer
The primary IPv4 issues are a subnet mask mismatch on the point-to-point link and a missing default gateway on R2. On R1 G0/0, the mask is /24 instead of /30; while both routers can reach each other directly, the mismatched subnet mask causes routing inconsistencies because R1 advertises the link as a /24, potentially affecting routing decisions. Fixing the mask to /30 ensures both routers agree on the subnet.
R2 lacks a route to R1's loopback and the 192.168.1.0/24 network, so a default route via 10.0.0.1 resolves reachability. For IPv6, R1 G0/1 uses EUI-64, and R2 G0/1 must be on the same subnet (2001:db8:1::/64); R2's address was incorrectly set to 2001:db8:2::2/64, so changing it to 2001:db8:1::2/64 enables IPv6 ping.
Exam trap
Watch for subnet mask mismatches on point-to-point links; both ends must use the same mask. Also, ensure default routes point to the correct next-hop IP (the neighbor's interface IP). For IPv6, both interfaces must be on the same subnet to communicate directly.
Why the other options are wrong
The subnet mask on R1 G0/0 should be /30 to match R2, not /24.
The default gateway must be the neighbor's IP address, and IPv6 subnets must match for direct communication.
The requirement states EUI-64 on R1 G0/1, so static is not allowed.