Hi,
I am working on creat the QoS Policy with the shaping. Please the policy below.
class-map match-any mail
match protocol exchange
match protocol smtp
!
class-map match-any system
match protocol ftp
match protocol telnet
!
class-map match-any high
match access-group 2222
!
class-map match-any low
match protocol http url "xxx.com*"
match class-map mail
match class-map system
!
policy-map low_family
class mail
bandwidth percent 80
class system
bandwidth percent 20
!
policy-map ABC
class high
shape average percent 60
class low
shape average percent 40
service-policy low_family
In the red hightlight,
Can I do like this without matching two class-map since they will fall into the low class policy?
class-map match-any low
match protocol http url "xxx.com*"
Please advise. Thanks.