Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2010-09-29 08:58:54
Size: 540
Editor: PieterSmit
Comment: Create QOS links.
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 13: Line 19:
== Wifi QOS ==
 * http://www.cisco.com/en/US/docs/wireless/bridge/1400/12.3_8_JA/configuration/guide/p38qos.html
 * 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

 WifiQos}}}
Line 16: Line 58:
CategoryCisco CategoryCisco CategoryCisco

QOS Quality of service

Switches

Wifi QOS

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