In these blog you will get information about how to make bootable pendrive, N+ , data sharing, cmd related function and other types of courses and technology

Wednesday 27 February 2019

OSPF(Open Short Path First) Routing with IPV6

No comments :

OSPF(Open Short Path First) Routing with IPV6

For ipv4 Routing or for more details → click here

Diagram 
Router 2811 and switch 2950T 


Basic Configuration,clock rate and bandwidth 

Go to First Router
Router>en
Router#conf t
Router(config)#int s0/0/0

Router(config-if)#ipv6 address 2002::1/64
Router(config-if)#no shut
Router(config-if)#clock  rate 64000
Router(config-if)#bandwidth 1000
Router(config-if)#exit

Router(config)#int f0/0
Router(config-if)#ipv6 address 2001::1/64
Router(config-if)#no shut

Go to second Router 
Router>en
Router#conf t
Router(config)#int s0/0/0

Router(config-if)#ipv6 address 2002::2/64
Router(config-if)#no shut
Router(config-if)#bandwidth 1000
Router(config-if)#exit

Router(config)#int f0/0
Router(config-if)#ipv6 address 2003::1/64
Router(config-if)#no shut

Now Routing

1.   in routing use Product ID (10) which is similar in all router 
2.   router-id which is different in all router. 
      in first router we use 1.1.1.1
      in second router use 2.2.2.2
3.   In ospf also use area no. area 0 is backbone of network.

NOW
Go to first router

First create group 

Router(config)#ipv6 unicast-routing
Router(config)#ipv6 router osfp 10
Router(config-rtr)#router-id 1.1.1.1
Router(config-rtr)#exit

Now add port's of router in group

Router(config)#int s0/0/0
Router(config-if)#ipv6 ospf 10 area 0
Router(config-if)#exit

Router(config)#int f0/0
Router(config-if)#ipv6 ospf 10 area 0
Router(config-if)#exit

Now go to second router 

Same as router first
              or

First create group 

Router(config)#ipv6 unicast-routing
Router(config)#ipv6 router osfp 10
Router(config-rtr)#router-id 2.2.2.2
Router(config-rtr)#exit

Now add port's of router in group

Router(config)#int s0/0/0
Router(config-if)#ipv6 ospf 10 area 0
Router(config-if)#exit

Router(config)#int f0/0
Router(config-if)#ipv6 ospf 10 area 0
Router(config-if)#exit

Now checking

Send packet from one router to another router. or ping all ip


                                     ------------------END----------------------

No comments :

Post a Comment