viernes, 25 de noviembre de 2011

Ruta estática por defecto para redes Cisco


Una ruta estática por defecto se configura en una empresa cuando no se sabe la dirección de destino y la conexión a un ISP se hace mediante éste tipo de ruta, para ello utilizaremos la topología de red de la figura en la cual una empresa constituida por los routers R1 y R2 cada uno con su respectivas redes LAN quiere conexión a Internet para todos sus usuarios para lo cual se ha configurado la red con el protocolo de enrutamiento por vector de distancia RIP. El router R2 va ser utilizado como router Puente es decir va a funcionar con RIP y nos va a conectar con el router del ISP para el servicio de Internet.
A continuación presentaré la configuración de los router para lograrlo. Buena suerte en el intento ¡Hasta un siguiente articulo!

ROUTER R1
R1#sh run
Building configuration...
Current configuration : 853 bytes
!VERSION DE IOS
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!NOMBRE ROUTER
hostname R1
!CONTRASEÑA DE MODO EXEC ENCRIPTADA MD5
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!BUSQUEDA DNS DESACTIVADA
no ip domain-lookup
!CONFIGURACION DE INTERFACES FASTETHERNET (LAN)
interface FastEthernet0/0
 description CONEXION LAN 1
 ip address 172.16.1.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
!CONFIGURACION DE INTERFACES SERIALES (WAN)
interface Serial0/0/0
 description CONEXION R1 - R2
 ip address 172.16.2.1 255.255.255.0
 clock rate 64000
!
interface Serial0/0/1
 no ip address
 shutdown
!
interface Vlan1
 no ip address
 shutdown
!CONFIGURACION DE RIP
router rip
 passive-interface FastEthernet0/0
 network 172.16.0.0
!
ip classless
!MENSAJE DEL DIA
banner motd ^CACCESO RESTRINGIDO^C
!CONFIGURACION DE CONTRASEÑAS DE CONSOLA Y TELNET
line con 0
 password cisco
 login
line vty 0 4
 password cisco
 login
!
end
ROUTER R2
 R2#sh run
Building configuration...
Current configuration : 945 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname R2
!CONTRASEÑA MODO EXIC SIN CIFRAR
enable password CISCO
!
no ip domain-lookup
!
interface FastEthernet0/0
 description CONEXION LAN 2
 ip address 172.16.3.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Serial0/0/0
 description CONEXION R2 - R1
 ip address 172.16.2.2 255.255.255.0
!
interface Serial0/0/1
 description R2 - ISP
 ip address 192.168.1.2 255.255.255.0
!
interface Vlan1
 no ip address
 shutdown
!
router rip
 passive-interface FastEthernet0/0
 passive-interface Serial0/0/1
 network 172.16.0.0
!PROPAGACION DE LA RUTA POR DEFECTO A TRAVES DE RIP
 default-information originate
!CONFIGURACION DE LA RUTA POR DEFECTO
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/0/1
!
banner motd ^CACCESO RESTRINGIDO^C
!
line con 0
 password CISCO
 login
linevty 0 4
 password cisco
 login
!
end
ROUTER ISP
ISP#sh run
Building configuration...
Current configuration : 835 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname ISP
!
enable secret 5 $1$mERr$hx5rVt7rPNoS4wqbXKX7m0
!
no ip domain-lookup
!
interface FastEthernet0/0
 description CONEXION LAN ISP
 ip address 172.16.4.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Serial0/0/0
 no ip address
 shutdown
!
interface Serial0/0/1
 description CONEXION ISP - R2
 ip address 192.168.1.1 255.255.255.0
 clock rate 64000
!
interface Vlan1
 no ip address
 shutdown
!CONFIGURACION DE LA RUTA ESTATICA CON LA DIRECCION DE RED DE RESUMEN
ip classless
ip route 172.16.0.0 255.255.0.0 Serial0/0/1
!
banner motd ^CACCESO RESTRINGIDO^C
!
line con 0
 password cisco
 login
line vty 0 4
 password cisco
 login
!
end

No hay comentarios:

Publicar un comentario

"Tu opinión es importante, gracias por comentar"