Está en la página 1de 13

UNIVERSIDAD TCNICA DEL NORTE

Facultad de Ingeniera en Ciencias Aplicadas


Carrera de Ingeniera en Electrnica y Redes de
Comunicacin

NETWORKING III

INTEGRANTES GRUPO 5
- Paul Espinel
- Gabriela Taboada
- Edison Carlosama

DOCENTE: Ing. Carlos Vsquez

Ibarra, 9 de diciembre del 2014

Tema: REALIZAR UN TUNNELING IPV6 SOBRE UNA INFRAESTRUCTURA IPV4.


TOPOLOGA:

TABLA DE DIRECCIONAMIENTO:

DISPOSITIVO INTERFAZ
LAPTOP 0
LAPTOP 1
Router-1

Router-2
Router-3

NIC
NIC
Se0/0/0
Gig0/1
Tunnel 0
Se0/0/0
Se0/0/1
Se0/0/0
Gig0/0
Tunnel 0

DIRECCIN IP
2001:DB8:11::10
2001:DB8:10::10
10.10.10.1
2001:DB8:11::1
2001:BBBB:11::1
10.10.10.2
10.10.10.5
10.10.10.6
2001:DB8:10::1
2001:BBBB:11::2

MASCARA DE
SUBRED
/64
/64
255.255.255.252
/64
/64
255.255.255.252
255.255.255.252
255.255.255.252
/64
/64

Las interfaces seriales de R1, R2 y R3 forman parte de una red basada en un enrutamiento IPv4
con las direcciones que se muestran en la topologa; las interfaces gigabitethernet que
pertenecen a las redes LAN estn basadas en un enrutamiento IPv6. El objetivo es formar un
tnel que permita comunicar las dos redes LAN (IPv6) usando rutas estticas entre ellas, para
esto se debe realizar un proceso de configuracin adecuado.
DESARROLLO:
CONFIGURACIN BSICA: R1, R2 Y R3

Router>enable
Router#configure terminal
Router(config)#hostname NetIII_GR5_R
NetIII_GR5_R(config)#
NetIII_GR5_R (config)#line console 0

NetIII_GR5_R (config-line)#password cisco


NetIII_GR5_R (config-line)#login
NetIII_GR5_R (config-line)#exit
NetIII_GR5_R (config)#line vty 0 4
NetIII_GR5_R (config-line)#password cisco
NetIII_GR5_R (config-line)#login
NetIII_GR5_R (config-line)#exit
NetIII_GR5_R (config)#enable password cisco
NetIII_GR5_R (config)#enable secret class
NetIII_GR5_R (config)#exit
R1:

CONFIGURACION DE TELNET Y SSH:


NetIII_GR5_R (config)#ip domain-name gr5.com
NetIII_GR5_R (config)#crypto key generate rsa
How many bits in the modulus [512]: 1024
NetIII_GR5_R (config)#ip ssh time-out 20
NetIII_GR5_R (config)#ip ssh authentication-retries 3
NetIII_GR5_R (config)#username grupo5 password grupo5
NetIII_GR5_R (config)#line vty 0 4
NetIII_GR5_R (config-line)#exec-timeout 3
NetIII_GR5_R (config-line)#transport input ssh
NetIII_GR5_R (config-line)#login local
NetIII_GR5_R (config-line)#end

Estas configuraciones se deben realizar en cada router, lo nico que va a variar es el nombre
del router que se va a configurar, de acuerdo con lo que establece en la topologa, de esta
manera el nombre de del router dos sera: NETIII-GR5-R2; en el router tres sera: NETIII-GR5R3.
CONFIGURACION DE INTERFACES IPV4:
ROUTER 1:

NETIII_GR2_R1 (config)#interface serial0/0/0


NETIII_GR2_R1 (config-if)#ip address 10.10.10.1 255.255.255.252
NETIII_GR2_R1 (config-if)#clock rate 64000
NETIII_GR2_R1 (config-if)#no shutdown

ROUTER 2:

NETIII_GR2_R2 (config)#interface serial0/0/0


NETIII_GR2_R2 (config-if)#ip address 10.10.10.2 255.255.255.252
NETIII_GR2_R2 (config-if)#no shutdown
NETIII_GR2_R1 (config)#interface serial0/0/1

NETIII_GR2_R1 (config-if)#ip address 10.10.10.5255.255.255.252


NETIII_GR2_R1 (config-if)#clock rate 64000
NETIII_GR2_R1 (config-if)#no shutdown

ROUTER 3:

NETIII_GR2_R3 (config)#interface serial0/0/0


NETIII_GR2_R3 (config-if)#ip address 10.10.10.6 255.255.255.252
NETIII_GR2_R3(config-if)#no shutdown

ENRUTAMIENTO OSPF:
R1:

R2

R3:

PRUEBAS DE CONECTIVIDAD OSPF ENTRE R1 Y R3: estas pruebas permiten ver si existe o no
convergencia en el protocolo de enrutamiento configurado en la red ospf en Ipv4. Debe existir
convergencia para seguir con los dems pasos y poder realizar el tunnelling.
Ping de R3 a R1

Ping de R1 a R3

Existe convergencia en la red IPv4, ahora se procede a configurar el enrutamiento IPv6


juntamente con el tnel.
Configuracin de interfaces:
R1: configuraremos la interfaz gigabitethetnet 0/1

NETIII_GR2_R1(config)#ipv6 unicast-routing
NETIII_GR2_R1(config)#interface gigabitethernet 0/1
NETIII_GR2_R1(config-if)#ipv6 enable
NETIII_GR2_R1(config-if)#ipv6 address 2001:db8:11::1/64
NETIII_GR2_R1(config-if)#ipv6 fe80::1 link-local
NETIII_GR2_R1(config-if)#no shutdown

R3: configuraremos la interfaz gigabitethernet 0/0

NETIII_GR2_R3 (config)#ipv6 unicast-routing


NETIII_GR2_R3 (config)#interface gigabitethernet 0/0
NETIII_GR2_R3 (config-if)#ipv6 enable
NETIII_GR2_R3(config-if)#ipv6 address 2001:db8:10::1/64
NETIII_GR2_R3(config-if)#ipv6 fe80::1 link-local
NETIII_GR2_R3(config-if)#no shutdown

CONFIGURACION DE INTERFAZ TUNNEL 0:


R1:

NETIII_GR2_R1 (config)#interface tunnel 0


NETIII_GR2_R1 (config-if)#no ip address

NETIII_GR2_R1(config-if)#ipv6 address 2001:bbbb:11::1/64


NETIII_GR2_R1(config-if)#tunnel destination 10.10.10.6
NETIII_GR2_R1(config-if)#tunnel source serial 0/0/0
NETIII_GR2_R1(config-if)#tunnel mode ipv6ip
NETIII_GR2_R1(config-if)#no shutdown
NETIII_GR2_R1(config-if)#exit

R3:

NETIII_GR2_R3 (config)#interface tunnel 0


NETIII_GR2_R3 (config-if)#no ip address
NETIII_GR2_R3(config-if)#ipv6 address 2001:bbbb:11::2/64
NETIII_GR2_R3(config-if)#tunnel source serial 0/0/0
NETIII_GR2_R3(config-if)#tunnel destination 10.10.10.1
NETIII_GR2_R3(config-if)#tunnel mode ipv6ip
NETIII_GR2_R3(config-if)#no shutdown
NETIII_GR2_R3(config-if)#exit

ENRUTAMIENTO ESTATICO IPV6:


R1:

NETIII_GR2_R1(config)#ipv6 route 2001:db8:10::/64 2001:bbbb:11::2


NETIII_GR2_R1(config)#exit
NETIII_GR2_R1#

R3:

NETIII_GR2_R3 (config)#ipv6 route ::/0 2001:bbbb:11::1


NETIII_GR2_R3 (config)#exit
NETIII_GR2_R3#

CONFIGURACIONES DE LAS LAPTOP DE LAS LAN:


LAPTOP 0

LAPTOP 1

PRUEBAS DE CONECTIVIDAD DE TUNEL:


PING ENTRE LAPTOP 0 Y LAPTOP 1:
Ping desde 2001:db8:11::10 hacia 2001:db8:10::10

PING ENTRE LAPTOP 1 Y LAPTOP 0


Ping desde 2001:db8:10::10 hacia 2001:db8:11::10

También podría gustarte