12
Soporte TeamTI [Home] http://steamti.blogspot.com/ Laboratorio Enrutamiento Estático con GNS3 En esta entrada presentaré un laboratorio interesante de Enrutamiento estático con GNS3, la topología es la siguiente. Y necesitaríamos interconectar todas las redes, comparto el proyecto y el IOS utilizado del Router. C3725 c3725-adventerprisek9-mz.124-15.T14.bin http://adf.ly/1Gxgl3 Link de descarga del proyecto completo. http://adf.ly/1Hf6SI

Laboratorio Enrutamiento Estático Con GNS3

Embed Size (px)

DESCRIPTION

Laboratorio Enrutamiento Estático Con GNS3GNS3 Cisco

Citation preview

Page 1: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

Laboratorio Enrutamiento Estático con GNS3

En esta entrada presentaré un laboratorio interesante de Enrutamiento estático con GNS3, la

topología es la siguiente.

Y necesitaríamos interconectar todas las redes, comparto el proyecto y el IOS utilizado del Router.

C3725

c3725-adventerprisek9-mz.124-15.T14.bin

http://adf.ly/1Gxgl3

Link de descarga del proyecto completo.

http://adf.ly/1Hf6SI

Page 2: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

Configuración de los Routers R1

! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R1 ! boot-start-marker boot-end-marker ! ! no aaa new-model memory-size iomem 5 no ip icmp rate-limit unreachable ip cef ! ! ! ! no ip domain lookup ! multilink bundle-name authenticated ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !

Page 3: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

! ! ! archive log config hidekeys ! ! ! ! ip tcp synwait-time 5 ! ! ! ! interface FastEthernet0/0 ip address 192.168.10.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0 ip address 10.0.0.1 255.0.0.0 clock rate 64000 ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1 ip address 20.0.0.1 255.0.0.0 clock rate 32000 ! ip forward-protocol nd ip route 192.168.20.0 255.255.255.0 10.0.0.2 ip route 192.168.30.0 255.255.255.0 20.0.0.2 ip route 192.168.40.0 255.255.255.0 20.0.0.2 ! ! no ip http server no ip http secure-server ! no cdp log mismatch duplex !

Page 4: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

! ! ! ! ! control-plane ! ! ! ! ! ! ! ! ! ! line con 0 exec-timeout 0 0 privilege level 15 logging synchronous line aux 0 exec-timeout 0 0 privilege level 15 logging synchronous line vty 0 4 login ! ! end

R2

! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R2 ! boot-start-marker boot-end-marker ! !

Page 5: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

no aaa new-model memory-size iomem 5 no ip icmp rate-limit unreachable ip cef ! ! ! ! no ip domain lookup ! multilink bundle-name authenticated ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! archive log config hidekeys ! ! ! ! ip tcp synwait-time 5 ! ! ! ! interface FastEthernet0/0

Page 6: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

ip address 192.168.20.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0 ip address 10.0.0.2 255.0.0.0 clock rate 32000 ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1 no ip address shutdown clock rate 2000000 ! ip forward-protocol nd ip route 192.168.10.0 255.255.255.0 10.0.0.1 ip route 192.168.30.0 255.255.255.0 10.0.0.1 ip route 192.168.40.0 255.255.255.0 10.0.0.1 ! ! no ip http server no ip http secure-server ! no cdp log mismatch duplex ! ! ! ! ! ! control-plane ! ! ! ! ! ! ! ! !

Page 7: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

! line con 0 exec-timeout 0 0 privilege level 15 logging synchronous line aux 0 exec-timeout 0 0 privilege level 15 logging synchronous line vty 0 4 login ! ! end

R3

! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R3 ! boot-start-marker boot-end-marker ! ! no aaa new-model memory-size iomem 5 no ip icmp rate-limit unreachable ip cef ! ! ! ! no ip domain lookup ! multilink bundle-name authenticated ! ! ! !

Page 8: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! archive log config hidekeys ! ! ! ! ip tcp synwait-time 5 ! ! ! ! interface FastEthernet0/0 ip address 192.168.30.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0 ip address 20.0.0.2 255.0.0.0 clock rate 64000 ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1

Page 9: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

ip address 30.0.0.1 255.0.0.0 clock rate 32000 ! ip forward-protocol nd ip route 192.168.10.0 255.255.255.0 20.0.0.1 ip route 192.168.20.0 255.255.255.0 20.0.0.1 ip route 192.168.40.0 255.255.255.0 30.0.0.2 ! ! no ip http server no ip http secure-server ! no cdp log mismatch duplex ! ! ! ! ! ! control-plane ! ! ! ! ! ! ! ! ! ! line con 0 exec-timeout 0 0 privilege level 15 logging synchronous line aux 0 exec-timeout 0 0 privilege level 15 logging synchronous line vty 0 4 login ! ! end

R4

Page 10: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R4 ! boot-start-marker boot-end-marker ! ! no aaa new-model memory-size iomem 5 no ip icmp rate-limit unreachable ip cef ! ! ! ! no ip domain lookup ! multilink bundle-name authenticated ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !

Page 11: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

archive log config hidekeys ! ! ! ! ip tcp synwait-time 5 ! ! ! ! interface FastEthernet0/0 ip address 192.168.40.1 255.255.255.0 duplex auto speed auto ! interface Serial0/0 ip address 30.0.0.2 255.0.0.0 clock rate 64000 ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! ip forward-protocol nd ip route 192.168.10.0 255.255.255.0 30.0.0.1 ip route 192.168.20.0 255.255.255.0 30.0.0.1 ip route 192.168.30.0 255.255.255.0 30.0.0.1 ! ! no ip http server no ip http secure-server ! no cdp log mismatch duplex ! ! ! ! ! ! control-plane !

Page 12: Laboratorio Enrutamiento Estático Con GNS3

Soporte TeamTI [Home]

http://steamti.blogspot.com/

! ! ! ! ! ! ! ! ! line con 0 exec-timeout 0 0 privilege level 15 logging synchronous line aux 0 exec-timeout 0 0 privilege level 15 logging synchronous line vty 0 4 login ! ! end