In a route map instance, matches IPv6 address conditions specified in an IPv6 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 IPv6 ACL that permits traffic from specific sources and denies traffic from another source. The example then includes that ACL in a route-map stanza.
device# configure terminal device(config)# ipv6 access-list extended acl6_01 device(conf-ip6acl-ext)# seq 10 permit ipv6 any host 2000::1 count device(conf-ip6acl-ext)# seq 20 permit ipv6 any host 2000::2 count device(conf-ip6acl-ext)# seq 30 deny ipv6 any host 2000::3 count device(conf-ip6acl-ext)# exit device(config)# route-map example2 permit 1 device(config-route-map-example2/permit/1)# match ipv6 address acl acl6_01