In a route-map stanza, matches IPv4 address conditions specified in an IPv4 ACL.
Route-map configuration mode
The absence of a match statement is treated as "match any"; all traffic is forwarded according to the set statement.
Use the no form of this command to remove the match.
The following example creates an IPv4 ACL that permits traffic from a specific source IP and then includes that ACL in a route-map stanza.
device# configure terminal device(config)# ip access-list standard acl_01 device(conf-ipacl-std)# permit host 192.1.1.1 count device(conf-ipacl-std)# exit device(config)# route-map example1 permit 1 device(config-route-map-example1/permit/1)# match ip address acl acl_01