Creating a match list for filter policies

To create a match list you must:

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
---------------------------------------------