Wednesday, 28 December 2016

IPv6 ROUTING STATIC ROUTING & RIP ROUTING PART THREE

YOUTUBE LINK:    

Please find playlist in Hindi & English below:https://www.youtube.com/playlist?list=PL1PiPEQOeKMYqOvyKpym_dkoFY2y5BKt0https://www.youtube.com/playlist?list=PL1PiPEQOeKMY3r659R5gyWt4ScTzpyg6w

Sometimes to write every thing is very difficult so you please watch the videos associated with this page.

                                 IPv6 Routing 

IPv6 unicast routing off by default    "ipv6 unicast-routing"
 IPv6 Static Routing
Dynamic routing through
-RIPng
-OSPFv3
-IS-IS
-BGP

RIPng Overview

RFC 2080 -RIPng

similar in operation to Ripv1/Ripv2
UDP port 521 multicast FF02::9
configuration
-interface level "ipv6 rip[process]enable
-automatically enables global process
Split-horizon enabled globally
-"no split-horizon " on multipoint NBMA


Note:  in case of RIPng , ospfv3 and BGP we are learnig the updates through the next hop 
link-local address but in the case of static routing ,we are learning with respect to the 
global unicast routing.  


                           IPv6 RIPng & STATIC ROUTE LAB 


ROUTER CONFIGURATIONS:
!
hostname R1
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
ip cef
!
!
!
!
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
ipv6 unicast-routing
!
!
!
interface Loopback1
 no ip address
 ipv6 address 1::1/64
 ipv6 rip 1 enable
!
interface FastEthernet0/0
 no ip address
 duplex auto
 speed auto
 ipv6 address 10:1:12::1/64
 ipv6 rip 1 enable
!
interface FastEthernet0/1
 no ip address
 shutdown
 duplex auto
 speed auto
!
ip forward-protocol nd
!
!
ip http server
no ip http secure-server
!
ipv6 router rip 1
!
!
line con 0
line aux 0
line vty 0 4
 login
!
!
end
---------------------------------------------------------

R1(config-if)#do sh ipv6 route
IPv6 Routing Table - 7 entries
Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP
       U - Per-user Static route
       I1 - ISIS L1, I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary
       O - OSPF intra, OI - OSPF inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
       ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
C   1::/64 [0/0]
     via ::, Loopback1
L   1::1/128 [0/0]
     via ::, Loopback1
R   2::/64 [120/2]
     via FE80::C201:1FF:FE5C:0, FastEthernet0/0
C   10:1:12::/64 [0/0]
     via ::, FastEthernet0/0
L   10:1:12::1/128 [0/0]
     via ::, FastEthernet0/0
L   FE80::/10 [0/0]
     via ::, Null0
L   FF00::/8 [0/0]
     via ::, Null0

----------------------------------------------------------------
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
ip cef
!
!
!
!
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
ipv6 unicast-routing
!
!
interface Loopback1
 no ip address
 ipv6 address 2::2/64
 ipv6 rip 1 enable
!
interface FastEthernet0/0
 no ip address
 duplex auto
 speed auto
 ipv6 address 10:1:12::2/64
 ipv6 rip 1 enable
!
interface FastEthernet0/1
 no ip address
 shutdown
 duplex auto
 speed auto
!
ip forward-protocol nd
!
!
ip http server
no ip http secure-server
!
ipv6 router rip 1
!
!
!
line con 0
line aux 0
line vty 0 4
 login
!
!
end

---------------------------------------------------------------------

No comments:

Post a Comment