====Redistribution from RIP to EIGRP to OSPF====
router eigrp
redistribute rip metric x x x x x route-map INE ## Add a tag of 999 to routes ##
!
route-map INE
match certain routes
set tag 999
!
route ospf 1
redistribute EIGRP 100 route-map INE ## Only match ingress routes with a tag of 999 ##
route-map INE
match tag 999
* Have to set the metric for routes. Simply typing **redistribute rip** will not work.
* With no metric values set, the values are set to infinity.
* There are ways to set metrics for routes being redistributed into EIGRP:
* Using the **default-metric** bw delay reliability load mtu EIGRP subcommand.
* Using the **metric** bw delay reliability load mtu parametes on the **redistribute** command.
* Using the **route-map** parameter on the **redistribute** command, matching routes and setting metric components.
router eigrp 100
redistribute ospf 1 route-map INE
network 20.19.20.0 0.0.0.255
no auto-summary
!
router ospf 1
router-id 0.0.0.19
!
access-list 1 permit 188.188.188.0 0.0.0.255
!
route-map INE permit 10 ## 10 is the sequence number ##
match ip address 1 ## ACL number ##
set metric 1000 100 255 1 1500
!
route-map INE permit 20 ## match all other cases ##
set metric 100000 50 255 1 1500