How to configure OSPF and EIGRP protocol together

in CCNA & CCENT
Hi there, Could someone tell me how to configure OSPF and EIGRP together? For example, There are 3 routers, R1 and R2 use OSPF and R3 uses EIGRP for its routing tables. So, after configuring everything, how to communicate EIGRP router and OSPF routers? I don't knw this point.
Thanks so much.
Thanks so much.
Comments
EIGRP OSPF
OSPF Redistribution
Just read up on route redistribution, and seed metrics. I will say once you add the redistribute commands, be sure to specify the metrics.
Could someone help me, I m real in need for it.
All the configuration are finished except to combine these two protocols.
I m getting this error.
This is the topology, EIGRP and RIPv2 are in different network.
THANKS SO MUCH FOR YOUR HELPS.
Eigrp uses a complex matrix
When you redistribute the two, they have to have a way to understand each other, they need a seed metric.
For this two work you need the routing protocols properly configured on the middle router, and then you need the proper default metric command entered under each protocol
router eigrp 1
redistribute connected
redistribute rip
default-metric 10000 10 255 1 1500 (Where 10000 = Bandwidth, 10 = Delay, 255 = Reliability, 1 = Loading, and 1500 = Maximum Transmission Unit)
!
router rip
version 2
redistribute connected
redistribute eigrp 1 metric 1 (where 1 is the eigrp number and the second 1 is telling rip how many hops so RIP can understand how to judge the route)
Quest for 11K pages read in 2011
Page Count total to date - 1283
Still getting error with this one, I don't knw why.
Anyway Thanks so ur helps. [/code]
Looks like an IOS version issue, default-metric command doesn't seem to appear in anything older than 12.2
IOS 12.2 Config Guide
You can always use the command
For myself, I've always used the above passing the metric-parameters trailing the redistribute command.
there`s a 3 lan network the 1st is RIPv2, 2nd lan network use EIGRP then the last one use OSPF how will you connect each lan to each other? is there any possible thing to do ?
you can enable redistribution under the routing processes to get everything into anything, but be aware that redistribution can cause problems like routing loops etc.
best practise is to keep redistribution to a minimum.