CCNP ROUTE GRE

Enviado por dpacheco el Dom, 19/03/2017 - 02:03
Topología
Topologia GRE
Resumen de la actividad:
Interconexión de sucursales a un sitio central a través de túneles GRE utilizando EIGRP
Objetivo(s):
Configuración de túneles GRE (Hub and Spoke).
Configuración de EIGRP como IGP entre las sucursales.
Verificación de la conexión entre sucursales.
Recursos Utilizados:
7200 Software (C7200-ADVIPSERVICESK9-M), Version 15.2(4)S5, RELEASE SOFTWARE (fc1)
Desarrollo de la actividad:
Configuración de túneles GRE (Hub and Spoke)
Se configuraran los túneles 1,2 y 3 para la conexion de DP-H1 con las sucursales DP-S1, DP-S2 y DP-S2 respectivamente.
DP-H1(config)#int tu 1
DP-H1(config-if)# ip add 172.16.1.1 255.255.255.252
DP-H1(config-if)# tunnel source fastEthernet 0/0
DP-H1(config-if)# tunnel destination 190.1.0.2

DP-H1(config-if)#int tu 2
DP-H1(config-if)# ip add 172.16.1.5 255.255.255.252
DP-H1(config-if)# tunnel source fastEthernet 0/0
DP-H1(config-if)# tunnel destination 190.2.0.2

DP-H1(config-if)#int tu 3
DP-H1(config-if)# ip add 172.16.1.9 255.255.255.252
DP-H1(config-if)# tunnel source fastEthernet 0/0
DP-H1(config-if)# tunnel destination 190.3.0.2
DP-S1(config)#int tu 1
DP-S1(config-if)# ip add 172.16.1.2 255.255.255.252
DP-S1(config-if)# tunnel source fastEthernet 0/0
DP-S1(config-if)# tunnel destination 190.200.0.2
DP-S2(config)#int tu 2
DP-S2(config-if)# ip add 172.16.1.6 255.255.255.252
DP-S2(config-if)# tunnel source fastEthernet 0/0
DP-S2(config-if)# tunnel destination 190.200.0.2
DP-S3(config)#int tu 3
DP-S3(config-if)# ip add 172.16.1.10 255.255.255.252
DP-S3(config-if)# tunnel source fastEthernet 0/0
DP-S3(config-if)# tunnel destination 190.200.0.2
Verificación de la conexión a través de los tuneles
Se verificará la conexión entre H1 y las sucursales a través de los túneles GRE
DP-H1#show ip int brief | inc Tunnel
Tunnel1 172.16.1.1 YES manual up up
Tunnel2 172.16.1.5 YES manual up up
Tunnel3 172.16.1.9 YES manual up up
DP-H1#ping 172.16.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 156/180/204 ms
DP-H1#ping 172.16.1.6
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.1.6, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 196/232/348 ms
DP-H1#ping 172.16.1.9
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.1.9, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/12/16 ms
Configuración de EIGRP para la conexion de las sucursales
A continuación se configurara EIGRP (AS 100) para que exista comunicación entre las sucursales
DP-H1(config)#router eigrp 100
DP-H1(config-router)#netw 172.16.0.0
DP-H1(config-router)#netw 10.0.0.0

DP-S1(config)#router eigrp 100
DP-S1(config-router)#netw 172.16.0.0
DP-S1(config-router)#netw 10.0.0.0

DP-S2(config)#router eigrp 100
DP-S2(config-router)#netw 172.16.0.0
DP-S2(config-router)#netw 10.0.0.0

DP-S3(config)#router eigrp 100
DP-S3(config-router)#netw 172.16.0.0
DP-S3(config-router)#netw 10.0.0.0
Más información:
CCNP Routing and Switching ROUTE 300-101 Official Cert Guide