Greetings, I'm working on a lab for my CCENT, where I have two networks and I should be able to ping the laptops once I have everything configured. Both routers have a serial interface along with an ethernet interface. The lab also has you add static interfaces on both routers. There are two networks, Cisco Network and R2 Network, separated by two routers. I am not able to ping the laptops across the network. I'll try to break this down the best I can. Cisco Network Laptop (10.0.0.1) can ping the following: -Ethernet on Cisco Router (10.0.0.20) Not able to ping from Laptop (10.0.0.1 on Cisco Network: -Serial 0/0/0 on Cisco Router (15.0.0.1) -Serial 0/0/0 on R2 Router (15.0.0.2) -Fast Ethernet on Cisco Router (20.0.0.20) R2 Network Laptop (20.0.0.1) cannot ping anything: -Serial 0/0/0 on R2 Router (15.0.0.2) -Ethernet on R2 Router (20.0.0.20) From R2 Router, can ping the following: -Laptop (20.0.0.1) on R2 Network -Serial 0/0/0 on R2 Router (15.0.0.2) -Serial 0/0/0 on Cisco Network (15.0.0.1) Not able to ping from R2 Router Ethernet on R2 Router (20.0.0.20) From my Cisco Router, I am able to ping the following: -Serial 0/0/0 on Cisco Router (15.0.0.1) -Ethernet 1/0 on Cisco Router (10.0.0.20) -Laptop on Cisco Network (10.0.0.1) Here is the running config for Cisco Router
! version 12.4 no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption ! hostname cisco ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface FastEthernet0/0 no ip address duplex auto speed auto shutdown ! interface FastEthernet0/1 no ip address duplex auto speed auto shutdown ! interface Serial0/0/0 ip address 15.0.0.1 255.0.0.0 clock rate 64000 ! interface Serial0/1/0 no ip address shutdown ! interface Serial0/2/0 no ip address shutdown ! interface Serial0/3/0 no ip address shutdown ! interface Ethernet1/0 ip address 10.0.0.20 255.0.0.0 duplex auto speed auto ! interface Ethernet1/1 no ip address duplex auto speed auto shutdown ! interface Vlan1 no ip address shutdown ! ip classless ip route 20.0.0.0 255.0.0.0 15.0.0.2 ! ! ! ! ! ! ! line con 0 line vty 0 4 login ! ! ! end
Here is the interface from the Cisco Router
cisco#show ip int br Interface IP-Address OK? Method Status Protocol FastEthernet0/0 unassigned YES NVRAM administratively down down FastEthernet0/1 unassigned YES NVRAM administratively down down Serial0/0/0 15.0.0.1 YES manual up up Serial0/1/0 unassigned YES NVRAM administratively down down Serial0/2/0 unassigned YES NVRAM administratively down down Serial0/3/0 unassigned YES NVRAM administratively down down Ethernet1/0 10.0.0.20 YES manual up up Ethernet1/1 unassigned YES NVRAM administratively down down Vlan1 unassigned YES NVRAM administratively down down
Here are my routes from Cisco router
cisco#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set C 10.0.0.0/8 is directly connected, Ethernet1/0 C 15.0.0.0/8 is directly connected, Serial0/0/0 S 20.0.0.0/8 [1/0] via 15.0.0.2
Here is the running config from the R2 Router
! version 12.4 no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption ! hostname r2 ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! interface FastEthernet0/0 no ip address duplex auto speed auto shutdown ! interface FastEthernet0/1 no ip address duplex auto speed auto shutdown ! interface Serial0/0/0 ip address 15.0.0.2 255.0.0.0 ! interface Serial0/1/0 no ip address shutdown ! interface Serial0/2/0 no ip address shutdown ! interface Serial0/3/0 no ip address shutdown ! interface Ethernet1/0 ip address 20.0.0.2 255.0.0.0 duplex auto speed auto ! interface Ethernet1/1 no ip address duplex auto speed auto shutdown ! interface Vlan1 no ip address shutdown ! ip classless ip route 10.0.0.0 255.0.0.0 15.0.0.1 ! ! ! ! ! ! ! line con 0 line vty 0 4 login ! ! ! end
Here are the interfaces for the R2 Router
r2#show ip int br Interface IP-Address OK? Method Status Protocol FastEthernet0/0 unassigned YES NVRAM administratively down down FastEthernet0/1 unassigned YES NVRAM administratively down down Serial0/0/0 15.0.0.2 YES manual up up Serial0/1/0 unassigned YES NVRAM administratively down down Serial0/2/0 unassigned YES NVRAM administratively down down Serial0/3/0 unassigned YES NVRAM administratively down down Ethernet1/0 20.0.0.2 YES manual up up Ethernet1/1 unassigned YES NVRAM administratively down down Vlan1 unassigned YES NVRAM administratively down down
Here is the routing table from R2 Router
r2#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static route Gateway of last resort is not set S 10.0.0.0/8 [1/0] via 15.0.0.1 C 15.0.0.0/8 is directly connected, Serial0/0/0 C 20.0.0.0/8 is directly connected, Ethernet1/0