To create a match list you must:
Specify a type of a match list (for example, an IPv4 address prefix list).
Define a unique match list name (for example, an IPv4-Deny-List).
Specify at least one entry in the list (for example, a valid IPv4 prefix).
The following example shows an IPv4 prefix list configuration and its usage in an IPv4 filter policy:
*A:ala-48>config>filter# info
----------------------------------------------
match-list
ip-prefix-list "IPv4-Deny-List"
description "IPv4 deny-list"
prefix 10.0.0.0/21
prefix 10.254.0.0/24
exit
exit
ip-filter 10 name "ip-edge-filter"
scope template
entry 10
match
src-ip ip-prefix-list IPv4-Deny-List
exit
action drop
exit
exit
---------------------------------------------