Personal Notes on Qos on Cisco 2960

I wanted to see what happens when you configure egress Qos with SRR. To accomplish this, I create a policy-map which set the DSCP 40 for WWW traffic.

ip access-list extended ACL_HTTP
 permit tcp any any eq www
class-map match-all CM_HTTP
 match access-group name ACL_HTTP
!
!
policy-map PM_QOS
 class CM_HTTP
 set dscp cs5
interface FastEthernet0/1
 description laptop
 mls qos trust device cisco-phone
 service-policy input PM_QOS

I got a PC and Laptop connected via a Cisco 2960. On the PC I run iperf.exe on the default port and on port 80. On the laptop I have also 2 client iperf running.

Read more

iSCSI QOS Nexus

Identify iSCSI traffic : class-map type qos class-iscsi match protocol iscsi match cos 4 class-map type queuing class-iscsi match qos-group 4 policy-map type qos iscsi-in-policy class type qos class-fcoe set qos-group 1 class type qos class-iscsi set qos-group 4 policy-map type queuing iscsi-in-policy class type queuing class-iscsi bandwidth percent 10 class type queuing class-fcoe bandwidth … Read more