Re: QoS not working



On 26 Feb, 12:43, "Pawel Rutkowski" <rut...@xxxxxxxxxxxxxxxxxx> wrote:
I have follow QoS configuration on Cisco Access Point:

class-map match-all _class_testowa1
match access-group name testowywww
class-map match-all _class_testowa0
match access-group name testowy

policy-map testowa
class _class_testowa0
set cos 6
class _class_testowa1
set cos 0

ip access-list extended testowy
permit ip any host 192.168.7.7
permit ip host 192.168.7.7 any
permit tcp any any eq 443
deny ip any any

ip access-list extended testowywww
permit ip any host 192.168.7.7
permit ip host 192.168.7.7 any
permit tcp any any eq www
deny ip any any

I only test but when I downloading something from 192.168.7.7:443 and
192.168.7.7:80 the speed on both is that same, about 60kbytes/s.
I think the speed on :433 port should be much higher then on :80 port. I
think the QoS not working:(

Am I right ?

Thanks
Pawel R.

Your ACLs are the exact same as far as your traffic is concerned.
Traffic will ignore the rest of the ACL once it matches a single
line. Therefore, you want something like the following:

ip access-list extended testowy
permit tcp 192.168.7.7 any eq 443

ip access-list extended testowwwy
permit tcp 192.168.7.7 any eq 80

No need for deny, it is at the end of every ACL by default.

.