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
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