Estoy tratando de configurar un laboratorio de pruebas de Cisco. Tengo tres enrutadores y un conmutador:
- Cisco 2501
- Cisco 2513
- Cisco 3620
- Catalizador 1900
Lo que estoy tratando de hacer es obtener los 2501 y 2513 en la red. El enrutador n. ° 1 es el 2501; el enrutador n. ° 2 es el 2513.
Tengo todo el cable y los adaptadores necesarios para comenzar.
El enrutador 1 está conectado al enrutador 2 con un cable serie; usan 10.0.0.0 "R1 10.0.0.2/8 y R2 10.0.0.1/8".
El enrutador 1 actúa como un servidor DHCP; su piscina es 100.0.0.0. El enrutador 1 está conectado al Catalys 1900 usando eth0.
El enrutador 2 es el DCE y la frecuencia de reloj está configurada. El enrutador 2 está conectado a mi red doméstica en eth0.
Se está utilizando la versión 2 de RIP.
Puedo hacer ping a los enrutadores 1 y 2 desde mi red doméstica (192.168.1.0 "mycomputer 192.168.1.121/24").
Puedo hacer ping a una computadora en la red 100.0.0.0 "testcomp 100.0.0.11/8". Puedo hacer ping a Google desde los siguientes dispositivos: mi computadora y enrutador 2.
Sin embargo, no puedo hacer ping a Google desde los siguientes dispositivos: testcomp y router 1
¿Alguien puede decirme qué hice mal? Necesito todas las computadoras en la red 100.0.0.0 para poder acceder a Internet; Aquí está mi configuración:
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#