cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
590
Views
3
Helpful
4
Replies

Multiple Routing Protocols Redistribution

MuncH
Level 1
Level 1

Hi Team,
Please find the topology attached. (All routers Cisco 3725)

I am able to communicate from EIGRP routers to RIPv2 routers. Issue is I am not able to communicate from EIGRP/RIPv2 routers to Static configured routers.
Not able to communicate to R2/R3 from R5/R6/R7 and R8

R1 and R4 router redistibutions as below,


router rip
redistribute eigrp 10 metric 3
redistribute connected
redistribute static
exit
router eigrp 10
redistribute rip metric 1544 2000 255 1 1500
redistribute static metric 10000 0 255 1 1500
1 Accepted Solution

Accepted Solutions

Did you config follow 

Redistrubte static into eigrp 

Then config defualt route in all static route toward eigrp router that redistrubte static into eigrp.

I think ping failed becuase of echo reply can not forward back 

 

View solution in original post

4 Replies 4

Did you config follow 

Redistrubte static into eigrp 

Then config defualt route in all static route toward eigrp router that redistrubte static into eigrp.

I think ping failed becuase of echo reply can not forward back 

 

Hi @MHM Cisco World 
Thank you, Now i am able to ping with all routers.


on R2 added ip route 0.0.0.0 0.0.0.0 fa0/0
on R3 added ip route 0.0.0.0 0.0.0.0 fa0/1

 

You are so welcome 

Hello
I believe as R1/R4 are performing mutual redistribution , you will eventually inherit a loop, so you need to negate that happening.

 

R1/R4
route-map RIPintoEIGRP deny 10 -( eigrp routes- now rip routes with a tag of 90 will be denied from going back into eigrp
match tag 90

route-map RIPintoEIGRP permit 99 - ( All other rip routes are tagged with 120 into eigrp)
set tag 120

route-map EIGRPintoRIP deny 10 - ( rip routes- now eigrp routes with a tag of 120 will be denied from going back into rip
match tag 120

route-map EIGRPintoRIP permit 99 - ( All other eigrp routes are tagged with 90 into rip)
set tag 90

router eigrp 10
redistribute rip route-map RIPintoEIGRP metric 1544 2000 255 1 1500

router rip

redistribute eigrp route-map EIGRPintoRIP metric 3

Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul
Review Cisco Networking for a $25 gift card