I'm trying to set up a Cisco test lab I have three routers and one switch:
- Cisco 2501
- Cisco 2513
- Cisco 3620
- Catalyst 1900
What I'm trying to do is to get the 2501 and 2513 on the net. Router #1 is the 2501; router #2 is the 2513.
I have all of the cable and adapters needed to get started.
Router 1 is connected to Router 2 with a serial cable; they use 10.0.0.0 "R1 10.0.0.2/8 and R2 10.0.0.1/8".
Router 1 acts as a DHCP server; its pool is 100.0.0.0. Router 1 is connected to the Catalys 1900 using eth0.
Router 2 is the DCE and the clock rate is set. Router 2 is connected to my home network on eth0.
RIP version 2 is being used.
I can ping router1 and 2 from my home network (192.168.1.0 "mycomputer 192.168.1.121/24").
I can ping a computer on the 100.0.0.0 network "testcomp 100.0.0.11/8". I can ping google from the following devices: mycomputer and router 2.
However, I cannot ping Google from the following devices: testcomp and router 1
Can someone tell me what I did wrong? I need every computer on the 100.0.0.0 network to be able to get onto the internet; here is my configuration:
Router 2
ACRS-R2#show config
Using 602 out of 32762 bytes
!
version 11.3
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname ACRS-R2
!
enable secret 5 <REMOVED>
!
!
!
interface Ethernet0
ip address 192.168.1.244 255.255.255.0
!
interface Serial0
ip address 10.0.0.1 255.0.0.0
no ip mroute-cache
no fair-queue
clockrate 64000
!
interface Serial1
no ip address
shutdown
!
interface TokenRing0
no ip address
shutdown
!
router rip
version 2
network 10.0.0.0
network 192.168.1.0
!
ip default-gateway 192.168.1.254
ip classless
!
!
line con 0
line aux 0
line vty 0 4
login
!
end
ACRS-R2#
Gateway of last resort is 192.168.1.254 to network 0.0.0.0
R 100.0.0.0/8 [120/1] via 10.0.0.2, 00:00:04, Serial0
C 10.0.0.0/8 is directly connected, Serial0
C 192.168.1.0/24 is directly connected, Ethernet0
R* 0.0.0.0/0 [120/1] via 192.168.1.254, 00:00:06, Ethernet0
ACRS-R2#
Router 1
ACRS-R1#show conf
Using 790 out of 32762 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname ACRS-R1
!
enable secret 5 $ <REMOVED>
!
ip subnet-zero
ip name-server 192.168.1.254
ip dhcp excluded-address 100.0.0.1 100.0.0.10
!
ip dhcp pool ip100
network 100.0.0.0 255.0.0.0
dns-server 192.168.1.254
default-router 100.0.0.1
domain-name acrsnet
netbios-name-server 192.168.1.254
lease infinite
!
!
!
!
interface Ethernet0
ip address 100.0.0.1 255.0.0.0
!
interface Serial0
ip address 10.0.0.2 255.0.0.0
!
interface Serial1
no ip address
shutdown
!
router rip
version 2
network 10.0.0.0
network 100.0.0.0
!
ip default-gateway 10.0.0.1
ip classless
no ip http server
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
end
ACRS-R1#
Gateway of last resort is 10.0.0.1 to network 0.0.0.0
C 100.0.0.0/8 is directly connected, Ethernet0
C 10.0.0.0/8 is directly connected, Serial0
R 192.168.1.0/24 [120/1] via 10.0.0.1, 00:00:09, Serial0
R* 0.0.0.0/0 [120/2] via 10.0.0.1, 00:00:09, Serial0
ACRS-R1#