01-10-2016 01:04 AM - edited 03-08-2019 03:21 AM
Hello, all. I'm studying for my CCNA and Im doing some labs in Packet tracer. I have RIP2 network and EIGRP network, all computers in those networks can ping each other, so the routing is good. Now I wanted to connect this two networks so I created router in the middle (CORE router) that should redistribute traffic between networks. I enabled RIp2 and EIGRP on Core router and I followed instructions for redistribution, so I typed this commands:
router eigrp 1
redistribute rip metric 1024 0 255 1 1500
network 10.0.0.0
no auto-summary
!
router rip
redistribute eigrp 1 metric 14
network 10.0.0.0
network 172.30.0.0
network 192.168.13.0
no auto-summary
!
All computers in RIP 2 network can see Core router, all computers in EIGRP network can see Core router, but they cant see each other.
When I type show ip route it looks like EIGRP network can see RIP2 network, but not vice versa.
So it looks like EIGRP router and Core router learned all routes, but RIP2 router didnt. Obviously I messed something with redistribution.
Please help. Thank you in advance.
In attachment you an see how my lab looks like.
Solved! Go to Solution.
01-11-2016 10:31 PM
Try the below and changing everything over to RIP V2.
router rip
version 2
redistribute eigrp 1 metric 10
RIP has a maximum metric of 15. So making the metric 14 means the routes will die one hop away. Also without "version 2" RIP is classfull, so you may be munging the routes, depending on the prefixes being used.
01-11-2016 10:31 PM
Try the below and changing everything over to RIP V2.
router rip
version 2
redistribute eigrp 1 metric 10
RIP has a maximum metric of 15. So making the metric 14 means the routes will die one hop away. Also without "version 2" RIP is classfull, so you may be munging the routes, depending on the prefixes being used.
01-11-2016 11:42 PM
Thank you, I accidentally created two threads. You are right, I forgot to turn on RIP version 2 for Core router and that was the issue. As soon as I did set RIPv2 everything worked like a charm. Anyway, thank you very much.
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