Como configurar una red IPv6 en CISCO Packet Tracer



Como configurar una red IPv6 en CISCO Packet Tracer

Como configurar una red IPv6 en CISCO Packet Tracer

script utilizado

!******************
!R1
!******************
enable
configure terminal
ipv6 unicast-routing
hostname R1
interface g0/0/0
ipv6 address 2001:db8:acad:1::1/64
no shutdown
interface g0/0/1
ipv6 address 2001:db8:acad:2::1/64
no shutdown
exit
exit
wr

—————————————
!******************
!R2
!******************
enable
configure terminal
ipv6 unicast-routing
hostname R2
interface g0/0/0
ipv6 address 2001:db8:f1ca:1::1/64
no shutdown
exit
exit
wr

ESTA PARTE ES PARA PODER ENRUTAR LOS SERIALES

—————————————
!R1*************************
enable
configure terminal
interface se0/1/0
ipv6 address 2001:db8:acad:3::1/64
no shutdown
ipv6 route ::/64 2001:db8:acad:3::2
exit
wr

—————————————-
!R2*************************
enable
configure terminal
interface se0/1/0
ipv6 address 2001:db8:acad:3::2/64
no shutdown
ipv6 route ::/64 2001:db8:acad:3::1
exit
wr

“do sh ipv6 brief” para ver como está lo de link local

————————————————
ESTA PARTE ES PARA EL LINK LOCAL

!******************
!R1
!******************
enable
configure terminal
interface g0/0/0
!**********Link local************
ipv6 address fe80::1:1 link-local
!*******************************
no shutdown
interface g0/0/1
!**********Link local************
ipv6 address fe80::2:1 link-local
!*******************************
no shutdown
exit
exit
wr

—————————————
!******************
!R2
!******************
enable
configure terminal
interface g0/0/0
!**********Link local************
ipv6 address fe80::3:1 link-local
!*******************************
no shutdown
exit
exit
wr .

Comments are closed.