Route-map and Tags

Network Diagram In this lab, we'll learn how to control redistribution base on the tag. Setup your network as topology, addressing and routing protocol above. Make sure everything working correctly. Create route-map and set tag using ACL. filter the traffic we want to control using ACL, in this case we gonna create an ACL group of classless network coming from router C, done on router B ip access-list standard CLASSLESS permit 10.1.1.4 0.0.0.3 permit 6.0.0.0 0.15.255.255 permit 146.6.0.0 0.0.15.255 permit 206.6.6.0 0.0.0.15 create a route-map and set the specific tags route-map SET_TAGS permit 10 match ip address CLASSLESS set tag 1 ! route-map SET_TAGS permit 20 set tag 2 //we didn't set ant match, anything don't match ant from above will fall under this group now apply this route-map to be redistribute into OSPF 1 router ospf 1 log-adjacency-changes redistribute eigrp 1 subnets route-map SET_TAGS ...