04-18-2023 10:11 AM - last edited on 04-19-2023 02:03 AM by Translator
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
Solved! Go to Solution.
04-18-2023 10:20 AM - last edited on 04-19-2023 02:04 AM by Translator
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
04-18-2023 10:20 AM - last edited on 04-19-2023 02:04 AM by Translator
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
04-18-2023 10:35 AM - last edited on 04-19-2023 02:04 AM by Translator
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
04-18-2023 10:51 AM
You are so welcome
04-18-2023 01:30 PM - last edited on 04-19-2023 02:05 AM by Translator
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
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide