IPv4 Lab 05 Enrutamiento RIP-Comandos
IPv4 Lab 05 Enrutamiento RIP-Comandos
IPv4 Lab 05 Enrutamiento RIP-Comandos
1.
Interfaz
Fa0/0
S0/0
S0/1
Fa0/0
S0/0
Fa0/0
S0/1
NIC
NIC
NIC
Direccin IP
192.168.3.1
192.168.1.2
192.168.4.1
192.168.2.1
192.168.1.1
192.168.5.1
192.168.4.2
192.168.2.10
192.168.3.10
192.168.5.10
Mascara de Subred
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
255.255.255.0
El modulo que se insertara a los routers 2620XM ser el WIC-2T. De acuerdo a la tabla de
direccionamiento realice la configuracin de cada uno de los routers. Asimismo asegurece que el
dispositivo HQ tiene saliente las conexiones DCE.
Router>enable
Router#configure terminal
Router(config)#hostname BRANCH
BRANCH(config)#enable secret cisco
BRANCH(config)#line vty 0 4
BRANCH(config-line)#password cisco
BRANCH(config-line)#login
BRANCH(config-line)#exit
BRANCH(config)#line console 0
BRANCH(config-line)#password cisco
BRANCH(config-line)#login
BRANCH(config-line)#exit
BRANCH(config)#interface FastEthernet0/0
BRANCH(config-if)#ip address 192.168.2.1 255.255.255.0
BRANCH(config-if)#description Enlace FastEthernet con la red LAN de Branch
BRANCH(config-if)#no shutdown
BRANCH(config-if)#exit
BRANCH(config)#interface serial0/0
BRANCH(config-if)#ip address 192.168.1.1 255.255.255.0
BRANCH(config-if)#description Enlace Serial punto a punto con la interfaz serial0/0 de HQ
BRANCH(config-if)#no shutdown
BRANCH(config-if)#exit
BRANCH(config)#exit
HQ(config)#interface serial0/0
HQ(config-if)#ip address 192.168.1.2 255.255.255.0
HQ(config-if)#description Enlace Serial punto a punto con la interfaz serial0/0 de BRANCH
HQ(config-if)#clock rate 64000
HQ(config-if)#no shutdown
HQ(config-if)#exit
HQ(config)#interface serial0/1
HQ(config-if)#ip address 192.168.4.1 255.255.255.0
HQ(config-if)#description Enlace Serial punto a punto con la interfaz serial0/1 de ISP
HQ(config-if)#clock rate 64000
HQ(config-if)#no shutdown
HQ(config-if)#exit
HQ(config)#exit
HQ#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
HQ#
Seguidamente revise la configuracin de los dispositivos de las interfaces
2.
Usando el comando show interface. Verifique la salida en los 3 routers con el mencionado
comando. Asimismo notara que se le pedira un password para el ingreso de los comandos, el
password ingresado debe se cisco.
Usando el comando show cdp neighbors podra observar las salidas que un determinado router
tiene como interfaces activas.
3.
Revisar las redes que actualmente forman parte de la tabla de enrutamiento antes de configurar el
protocolo dinmico. Usar el comando show ip route. Deberan aparecer nicamente las redes
directamente conectadas. Dos redes tanto para BRANCH y ISP; tres redes para ICARO.
Configuracin de RIP para BRANCH.
User Access Verification
Password:
BRANCH>enable
Password:
BRANCH#configure terminal
BRANCH(config)#router rip
BRANCH(config-router)#network 192.168.1.0
BRANCH(config-router)#network 192.168.2.0
BRANCH(config-router)#^Z
BRANCH#
Seguidamente revise la configuracin de la configuracin RIP
Deje pasar unos segundos para que la red converja y luego revise de nuevo las tablas de
enrutamiento de cada equipo con el comando show ip route. Podr ver como ahora todos los
routers poseen la misma informacin sobre la internetwork (5 redes).
4.
INTERFACES PASIVAS
El uso del comando passive interface puede evitar que los routers enven las actualizaciones de
enrutamiento a travs de una interfaz en particular del router.
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
description Enlace FastEthernet con la red LAN de Branch
ip address 192.168.2.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
description Enlace Serial punto a punto con la interfaz serial0/0 de HQ
ip address 192.168.1.1 255.255.255.0
!
interface Serial0/1
no ip address
shutdown
!
router rip
passive-interface FastEthernet0/0
network 192.168.1.0
network 192.168.2.0
!
ip classless
!
!
!
!
!
!
!
line con 0
password cisco
login
line vty 0 4
password cisco
login
!
!
!
end
BRANCH#
BRANCH#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
BRANCH#
Verificar del Router ISP
User Access Verification
Password:
ISP>enable
Password:
ISP#show run
Building configuration...
Current configuration : 679 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname ISP
!
!
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
description Enlace FastEthernet con la red LAN de ISP
ip address 192.168.5.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
no ip address
shutdown
!
interface Serial0/1
ip address 192.168.4.2 255.255.255.0
!
router rip
passive-interface FastEthernet0/0
network 192.168.4.0
network 192.168.5.0
!
ip classless
!
!
!
!
!
!
!
line con 0
password cisco
login
line vty 0 4
password cisco
login
!
!
!
end