**IPv6 Route Redistribution**
**Key Points:**
- Redistribution is typically configured on routers that run
multiple routing protocols.
- Careful planning is needed to avoid routing loops,
suboptimal paths, or convergence issues.
- Use route filtering, metrics, and administrative distance
tuning to control redistribution.
- Default metrics often need manual assignment when
redistributing between protocols (e.g., OSPF to EIGRP).
**Example Use Case:**
Connecting an OSPFv3 domain with a BGP IPv6 network,
allowing internal routes to be advertised externally and vice versa.
**Configuration Note:**
Always verify routes after redistribution and ensure prefix
lengths and next-hop addresses are correctly advertised.
Let's see the configuration:-
Task:
- Configure the topology as per the diagram
- Configure the IPv6 addresses as per the topology
- Configure EIGRPv3 on router 1 and advertise directly
- Configure OSPFv3 on router 2 and advertise FastEthernet 2/0 - 3/0
- Configure EIGRPv3 on router 2 and advertise FastEthernet 0/0
- Configure OSPFv3 on router 3 and advertise FastEthernet 3/0
- Configure RIPng on router 3 and advertise FastEthernet 2/0
- Configure redistribution between EIGRPv3 and OSPFv3 and vice versa
- Configure redistribution between RIPng and OSPFv3 and vice versa
- Make sure all the routes are exchanged
- ensure the connectivity and verify with show commands
R1(config)#ipv6
unicast-routing
R1(config)#interface
fastethernet 0/0
R1(config-if)#ipv6
address 2001:1122:1122:1122::1/64
R1(config-if)#no
shutdown
R1(config-if)#exit
R1(config)#interface
fastethernet 2/0
R1(config-if)#ipv6
address fc00:1111:1111:1111::1/64
R1(config-if)#no
shutdown
R1(config-if)#no
keepalive
R1(config-if)#exit
R1(config)#
R2(config)#ipv6
unicast-routing
R2(config)#interface
fastethernet 0/0
R2(config-if)#ipv6
address 2001:1122:1122:1122::2/64
R2(config-if)#no
shutdown
R2(config-if)#exit
R2(config)#interface
fastethernet 2/0
R2(config-if)#ipv6
address fc00:2222:2222:2222::1/64
R2(config-if)#no
shutdown
R2(config-if)#no
keepalive
R2(config-if)#exit
R2(config)#interface
fastethernet 3/0
R2(config-if)#ipv6
address 2001:2233:2233:2233::1/64
R2(config-if)#no
shutdown
R2(config-if)#exit
R3#show ipv6 interface brief
FastEthernet0/0 [administratively down/down]
unassigned
ATM1/0 [administratively down/down]
unassigned
FastEthernet2/0 [up/up]
FE80::C803:A5FF:FE68:38
FC00:3333:3333:3333::1
FastEthernet3/0 [up/up]
FE80::C803:A5FF:FE68:54
2001:2233:2233:2233::2
R1(config)#ipv6 router eigrp 65100
R1(config-rtr)#no shutdown
R1(config-rtr)#router-id 11.11.11.11
R1(config-rtr)#exit
R1(config)#interface fastethernet 0/0
R1(config-if)#ipv6 eigrp 65100
R1(config-if)#exit
R1(config)#interface fastethernet 2/0
R1(config-if)#ipv6 eigrp 65100
R1(config-if)#exit
R2(config)#ipv6 router eigrp 65100
R2(config-rtr)#no shutdown
R2(config-rtr)#router-id 22.22.22.22
R2(config-rtr)#exit
R2(config)#interface fastethernet 0/0
R2(config-if)#ipv6 eigrp 65100
R2(config-if)#exit
R2(config)#IPv6 router ospf 100
R2(config-rtr)#router-id 22.22.22.22
R2(config-rtr)#exit
R2(config)#interface fastethernet 2/0
R2(config-if)#ipv6 ospf 100 area 0
R2(config-if)#exit
R2(config)#interface fastethernet 3/0
R2(config-if)#ipv6 ospf 100 area 0
R2(config-if)#exit
R3(config)#IPv6 router ospf 100
R3(config-rtr)#router-id 33.33.33.33
R3(config-rtr)#exit
R3(config)#interface fastethernet 3/0
R3(config-if)#ipv6 ospf 100 area 0
R3(config-if)#exit
R3(config)#ipv6 unicast-routing
R3(config)#interface fastEthernet 2/0
R3(config-if)#ipv6 rip internetworks enable
R3(config-if)#exit
metric <bw> <delay> <reliability> <load> <mtu>


No comments:
Post a Comment