Differences between revisions 2 and 7 (spanning 5 versions)
Revision 2 as of 2011-01-24 12:46:47
Size: 678
Editor: PieterSmit
Comment:
Revision 7 as of 2012-04-17 05:30:11
Size: 1548
Editor: PieterSmit
Comment: add link to MPLS
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
 * See [[CiscoMPLS]] for MPLS QOS.
 * [[Linux/QoS]]
Line 12: Line 15:
== Switches ==
 * srr-queue on switch ports using CoS and 4 queue's
   * https://supportforums.cisco.com/message/630774
Line 15: Line 21:
 * Only map to COS.  * Only map dscp to COS.
 {{{wifiQos
interface Dot11Radio0
service-policy output qos01
!
class-map match-all _class_qos_cs3
 match ip dscp cs3
class-map match-all _class_qos_cs2
 match ip dscp cs2
class-map match-all _class_qos_ef
 match ip dscp ef
class-map match-all _class_qos_cs4
 match ip dscp cs4
class-map match-all _class_qos_cs1
 match ip dscp cs1
class-map match-all _class_qos_default
 match ip dscp default
!
!
policy-map qos01
 class _class_qos_ef
  set cos 6
 class _class_qos_cs4
  set cos 4
 class _class_qos_cs3
  set cos 3
 class _class_qos_cs2
  set cos 2
 class _class_qos_cs1
  set cos 1
 class _class_qos_default
  set cos 0
Line 17: Line 54:
 WifiQos}}}
Line 20: Line 58:
CategoryCisco CategoryCisco CategoryCisco

QOS Quality of service

Switches

Wifi QOS

Cisco/Qos (last edited 2016-06-03 07:32:50 by PieterSmit)