Skip to content

Instantly share code, notes, and snippets.

@bDrwx
Created November 21, 2016 19:45
Show Gist options
  • Save bDrwx/d0baa618d44ecfdd622b36bf13a76f0c to your computer and use it in GitHub Desktop.
Save bDrwx/d0baa618d44ecfdd622b36bf13a76f0c to your computer and use it in GitHub Desktop.
Cisco QOS Modular
1. Добавляем политику трафика к интерфейсу.
Switch(config)#interface fastethernet 0/1
Switch(config-if)#service-policy output policy1
2. Идентифицируем функцию QoS данной политики, используя классы.
Switch(config)#policy-map policy1
Switch(config-pmap)#class cisco
Switch(config-pmap-c)#bandwidth 3000
Switch(config-pmap)#class class-default
Switch(config-pmap-c)#bandwidth 2000
3. Классификация потока трафика, как принадлежащего к указанному классу QoS.
Switch(config)# class-map match-any cisco
Switch(config-cmap)# match access-group name test
Switch(config-cmap)# match interface fastethernet 0/1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment