Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Experiment 1

Configure, verify and troubleshoot the given IPv6 network using OSPF routing protocol.

Disable IPv6 RIP routing


Router(config)#no ipv6 router rip eiu
OSPF configuration in Router0
Router(config-router)#ipv6 router ospf 1
%OSPFv3-4-NORTRID: OSPFv3 process 1 could not pick a router-id,please configure
manually
Router(config-rtr)#router-id 1.1.1.1
Router(config-rtr)#exit
Router(config)#int gig0/0
Router(config-if)#ipv6 ospf 1 area 0
Router(config-if)#int se0/0/0
Router(config-if)#ipv6 ospf 1 area 0
OSPF configuration in Router1
Router(config-router)#ipv6 router ospf 1
%OSPFv3-4-NORTRID: OSPFv3 process 1 could not pick a router-id, please configure
manually
Router(config-rtr)#router-id 2.2.2.2
Router(config-rtr)#exit
Router(config)#int gig0/0
Router(config-if)#ipv6 ospf 1 area 0
Router(config-if)#int se0/0/0
Router(config-if)#ipv6 ospf 1 area 0
Now you can ping between two different networks.

Experiment 2
Design, Configure, verify and troubleshoot following network using OSPFv2 and RIPv2.

Redistribute RIP into OSPF and Redistribute OSPF into RIP


To solve this kind of issue, a 2-way redistribution must be done on the intermediate router, or in
this case is R1. The command used to redistribute RIP route into OSPF is “redistribute rip
subnets” and the implementation shown below:
Router1(config)# router rip
RIP into OSPF: redistribute ospf 1 metric < default metric between 0-16777214>
Router1(config)# redistribute ospf 1 metric 10

Notice that when we redistribute any external route into RIP, we have to specify the hop count to
reach that external network because RIP is a protocol that works based on the hop count. The hop
count doesn’t have to be exactly match the real condition but it could be adjusted according to
our needs. In this example, we set the hop count to 12 for easy identification purpose:
Router1(config)# router ospf 1
OSPF into RIP: redistribute rip metric < hop count [1 – 16]> otherwise you can use this
command: redistribute rip subnets
Router1(config)# redistribute rip metric 12

You might also like