You are connected to R1. Configure IPv4 and IPv6 addressing on R1's interfaces and verify reachability to R2. The current configuration has a wrong subnet mask on G0/0, missing default gateway for IPv4, and R1's IPv6 address is configured using EUI-64 while R2 uses a static IPv6 address. Fix these issues so that R1 can ping both R2's IPv4 and IPv6 addresses.
Exhibit
R1#show running-config Building configuration... hostname R1 ! interface GigabitEthernet0/0 ip address 192.0.2.1 255.255.255.0 ipv6 address 2001:db8:1::/64 eui-64 no shutdown ! interface GigabitEthernet0/1 ip address 198.51.100.1 255.255.255.0 ipv6 address 2001:db8:2::1/64 no shutdown ! ip route 0.0.0.0 0.0.0.0 192.0.2.254 ! end R2#show running-config Building configuration... hostname R2 ! interface GigabitEthernet0/0 ip address 192.0.2.2 255.255.255.252 ipv6 address 2001:db8:1::2/64 no shutdown ! interface GigabitEthernet0/1 ip address 203.0.113.1 255.255.255.0 no shutdown ! end R1#show ip interface brief Interface IP-Address OK? Method Status Protocol GigabitEthernet0/0 192.0.2.1 YES manual up up GigabitEthernet0/1 198.51.100.1 YES manual up up R1#ping 192.0.2.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.0.2.2, timeout is 2 seconds: ..... Success rate is 0 percent (0/5) R1#ping 2001:db8:1::2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2001:db8:1::2, timeout is 2 seconds: ..... Success rate is 0 percent (0/5)
Trap 1: Change R1 G0/0 subnet mask to /30, add a default route via…
This is incorrect because the default route points to 192.0.2.254, which is not R2's G0/0 IP (192.0.2.2), so IPv4 traffic will not be forwarded. Also, EUI-64 generates an interface ID from the MAC, which will not match the subnet expected by R2's static address 2001:db8:1::2/64.
Trap 2: Change R1 G0/0 subnet mask to /24, add a default route via…
This is incorrect because the subnet mask on R1's G0/0 remains /24, which does not match R2's /30. R1 will consider the subnet to be 192.0.2.0/24, while R2 uses 192.0.2.0/30, causing a mismatch that prevents direct communication.
Trap 3: Change R1 G0/0 subnet mask to /30, add a default route via…
This is incorrect because while the IPv4 issues are fixed, the IPv6 address generated by EUI-64 will not match the subnet expected by R2's static address 2001:db8:1::2/64. EUI-64 creates an interface ID based on the MAC, which is unpredictable and unlikely to be in the same subnet as R2's static address.
- A
Change R1 G0/0 subnet mask to /30, add a default route via 192.0.2.2, and configure a static IPv6 address 2001:db8:1::1/64 on G0/0.
This corrects all three issues: the mask matches R2's /30, the default route points to R2's G0/0 IP (192.0.2.2), and the static IPv6 address places R1 on the same subnet as R2's static address 2001:db8:1::2/64.
- B
Change R1 G0/0 subnet mask to /30, add a default route via 192.0.2.254, and keep the EUI-64 IPv6 address on G0/0.
Why wrong: This is incorrect because the default route points to 192.0.2.254, which is not R2's G0/0 IP (192.0.2.2), so IPv4 traffic will not be forwarded. Also, EUI-64 generates an interface ID from the MAC, which will not match the subnet expected by R2's static address 2001:db8:1::2/64.
- C
Change R1 G0/0 subnet mask to /24, add a default route via 192.0.2.2, and configure a static IPv6 address 2001:db8:1::1/64 on G0/0.
Why wrong: This is incorrect because the subnet mask on R1's G0/0 remains /24, which does not match R2's /30. R1 will consider the subnet to be 192.0.2.0/24, while R2 uses 192.0.2.0/30, causing a mismatch that prevents direct communication.
- D
Change R1 G0/0 subnet mask to /30, add a default route via 192.0.2.2, and keep the EUI-64 IPv6 address on G0/0.
Why wrong: This is incorrect because while the IPv4 issues are fixed, the IPv6 address generated by EUI-64 will not match the subnet expected by R2's static address 2001:db8:1::2/64. EUI-64 creates an interface ID based on the MAC, which is unpredictable and unlikely to be in the same subnet as R2's static address.