Hello all,
I am working on INE lab 3 in volume 2 and am having an issue with section 2.2.
Long story short, I am attempting to have R6 (who is redistributing between
RIP & EIGRP) tag routes from BB1 (Source: 54.1.3.254; In RIP) as 1 and BB3
(Source: 204.12.1.254; In RIP) as 2 using the "match ip route-source" command.
See below:
ip prefix-list From_BB1 seq 5 permit 54.1.3.254/32
ip prefix-list From_BB3 seq 5 permit 204.12.1.254/32
route-map RIP-to-EIGRP permit 10
match ip route-source prefix-list From_BB1
set tag 1
route-map RIP-to-EIGRP permit 20
match ip route-source prefix-list From_BB3
set tag 2
route-map RIP-to-EIGRP permit 30
router eigrp 100
redistribute rip metric 10000 1000 100 1 1500 route-map RIP-to-EIGRP
This does not work, the routes just pass through un-tagged via the last
route-map statement. When I switch to standard ACL's to identify the
route-sources, it works. See below:
access-list 1 permit 54.1.3.254
access-list 2 permit 204.12.1.254
route-map RIP-to-EIGRP permit 10
match ip route-source 1
set tag 1
route-map RIP-to-EIGRP permit 20
match ip route-source 2
set tag 2
route-map RIP-to-EIGRP permit 30
router eigrp 100
redistribute rip metric 10000 1000 100 1 1500 route-map RIP-to-EIGRP
What am I missing here? Am I using the prefix-list incorrectly?
Thanks,
Rob
Blogs and organic groups at http://www.ccie.net
Received on Wed Feb 08 2012 - 20:10:43 ART
This archive was generated by hypermail 2.2.0 : Thu Mar 01 2012 - 11:46:56 ART