cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1688
Views
0
Helpful
7
Replies

Redistributing OSPF in to RIPng ?

lowfell
Level 3
Level 3

In the attached diagram we have two distribution switches & Router 4 running Ripng between them.

Router 4 is also part of an OSPF network.

Now, I know I have to redistribute Ripng into the OSPF process of router 4

Do i not have to add some form of OSPF distribution in to the router 4 Ripng process & the two distribution switches?  

1 Accepted Solution

Accepted Solutions

im not actively doing the lab but looking at the config in place I would think it goes under the rip if your redistributing ospf into it like belwo

     (config )ipv6 router rip RIP_ZONE

(config-rtr) redistribute ospf 6 metric 5 include-connected

View solution in original post

7 Replies 7

Mark Malone
VIP Alumni
VIP Alumni

I don't see rip on the diag , but you would need mutual redistribution between eigrp and ospf process on R4

you may end up with a default route from nssa into eigrp , where the actual rip configured

I don't see rip on the diag

Ripng is in the middle diagram labelled Ipv6 Topology. Ripng RIP_ZONE

Do R4 & the two distribution switches need an OSPF redistribution command & if so what is the command?

sorry didn't scroll down :) thought was one screenshot

this is already raised in multiple forums , I see another post in the learning network too exact same topology and questions

http://www.techexams.net/forums/ccnp/54303-ipv6-route-redistribution.html

Ok, Mark. According to that post he needs to add this to R4

(config-router)redistribute ospf 6 metric 5 include-connected

Where about's in the config is this added?

version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R4
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
memory-size iomem 5
ip cef
!
!
!
!
ipv6 unicast-routing
ipv6 cef
!
multilink bundle-name authenticated
!
!
archive
log config
hidekeys
!
!
interface Tunnel34
no ip address
ipv6 address 2026::34:2/122
ipv6 ospf 6 area 34
tunnel source 10.1.1.10
tunnel destination 10.1.1.9
!
interface FastEthernet0/0
ip address 10.1.4.5 255.255.255.252
speed 100
full-duplex
ipv6 address 2026::2:1/122
ipv6 rip RIP_ZONE enable
!
interface Serial0/0
no ip address
encapsulation frame-relay IETF
clock rate 2000000
frame-relay lmi-type ansi
!
interface Serial0/0.34 point-to-point
ip address 10.1.1.10 255.255.255.252
snmp trap link-status
frame-relay interface-dlci 403
!
interface FastEthernet0/1
ip address 10.1.4.9 255.255.255.252
speed 100
full-duplex
!
interface Serial0/1
no ip address
shutdown
clock rate 2000000
!
router eigrp 10
redistribute ospf 1 route-map OSPF->EIGRP
network 10.1.4.4 0.0.0.3
network 10.1.4.8 0.0.0.3
default-metric 2000 2000 255 1 1500
no auto-summary
!
router ospf 1
log-adjacency-changes
area 34 nssa
redistribute eigrp 10 subnets route-map EIGRP->OSPF
network 10.1.1.8 0.0.0.3 area 34
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
access-list 10 permit 10.2.1.0 0.0.0.255
access-list 10 permit 10.2.2.0 0.0.0.255
access-list 10 permit 10.1.4.4 0.0.0.3
access-list 10 permit 10.1.4.8 0.0.0.3
access-list 10 permit 192.168.1.128 0.0.0.31
access-list 10 permit 10.2.4.12 0.0.0.3
access-list 20 permit 0.0.0.0
access-list 20 permit 10.1.1.0 0.0.0.3
access-list 20 permit 10.1.1.4 0.0.0.3
access-list 20 permit 10.1.1.8 0.0.0.3
ipv6 router ospf 6
log-adjacency-changes
redistribute rip RIP_ZONE include-connected
!
ipv6 router rip RIP_ZONE
!
!
!
!
route-map EIGRP->OSPF permit 10
match ip address 10
!
route-map OSPF->EIGRP permit 10
match ip address 20
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
logging synchronous
line aux 0
line vty 0 4
login
!
!
end

im not actively doing the lab but looking at the config in place I would think it goes under the rip if your redistributing ospf into it like belwo

     (config )ipv6 router rip RIP_ZONE

(config-rtr) redistribute ospf 6 metric 5 include-connected

Thanks for your help Mark. Greatly appreciated.

no probs good luck with the labbing