Redistribute Rip into EIGRP
As usual, Configure R1, R2 and R3 as EIGRP. On R1 add ip loopback which will be advertise as RIP, then redistributed it into EIGRP. Check this configuration below :
- R1(Config)#int lo100
- R1(Config-if)#ip address 100.100.100.100 255.255.255.255
Advertise to RIP
- R1(Config)#router rip
- R1(Config-router)#version 2
- R1(Config-router)#no auto-summary
- R1(Config-router)#network 100.100.100.0
Resitribute to EIGRP
- R1(Config)#router eigrp 1
- R1(Config-router)#redistribute rip metric 1 1 1 1 1
What does metric means? Metric value on eigrp is :
- Bandwidth metric in Kbits per second
- EIGRP delay metric, in 10 microsecond units
- EIGRP reliability metric where 255 is 100% reliable
- EIGRP effective bandwidth metric (Loading) where 255 loaded
- EIGRP MTU of the path
Ignore that value, use this value :
- R1(Config-router)#redistribute rip metric 1 1 1 1 1
In this case, metric value is different with the actual condition. But its function and how this routing works, is not different, cause we are riding from external route. The most important is metric must be filled up, now matter how much the value is, there is no effect.
As shown on R3, there is EX behind network 100.100.100.100. EX means that network 100.100.100.100 comes from external / different routing protocol.
Redistribute OSPF to EIGRP
On R1 add ip loopback which will be advertise as OSPF, then redistributed it into EIGRP. Check this configuration below :
- R1(Config)#int lo101
- R1(Config-if)#ip address 101.101.101.101 255.255.255.255
Advertise to OSPF
- R1(Config)#router OSPF 1
- R1(Config-router)#network 101.101.101.101 0.0.0.0 area 0
Resitribute to EIGRP
- R1(Config)#router eigrp 1
- R1(Config-router)#redistribute ospf 1 metric 1 1 1 1 1