Hello,
the match-all and match-any only refer to the class-map configuration and thus in your example it does not maky any difference, because there is only one statement.
However consider the following two class maps:
class-map match-any THREE
match ip address 10
match ip address 11
class-map match-all ONE
match ip address 10
match ip address 11
access-list 10 permit ip host 1.1.1.1
access-list 10 permit ip host 2.2.2.2
access-list 11 permit ip host 2.2.2.2
access-list 11 permit ip host 3.3.3.3
Here class-map THREE would match 1.1.1.1 or 2.2.2.2 or 3.3.3.3, whereas class-map ONE would only match host 2.2.2.2 which is found in all access-lists specified.
Hope this helps! please rate all posts.
Regards, Martin