From ffa77180e129b596f1e32e10f40b869c70c27b12 Mon Sep 17 00:00:00 2001 From: jdubois Date: Thu, 23 Nov 2023 17:28:38 +0100 Subject: [PATCH] =?UTF-8?q?rate-limiting=20plus=20de=20pr=C3=A9cision=20:?= =?UTF-8?q?=20102400=20kbps=20(soit=20100Mbps)=20au=20lieu=20de=20100000?= =?UTF-8?q?=20kbps=20(soit=20~97.7Mbps)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SwitchCisco.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SwitchCisco.md b/SwitchCisco.md index 8b408823..8bd0c80e 100644 --- a/SwitchCisco.md +++ b/SwitchCisco.md @@ -1784,7 +1784,7 @@ On crée une policy de type `queuing` en sortie : ~~~ Switch(config)# policy-map type queuing 100M-output Switch(config-pmap-que)# class type queuing class-default -Switch(config-pmap-c-que)# shape kbps 100000 +Switch(config-pmap-c-que)# shape kbps 102400 ~~~ On crée une policy de type `qos` en entrée : @@ -1792,7 +1792,7 @@ On crée une policy de type `qos` en entrée : ~~~ Switch(config)# policy-map type qos 100M-input Switch(config-pmap-qos)# class type qos class-default -Switch(config-pmap-c-qos)# police cir 100000 kbps +Switch(config-pmap-c-qos)# police cir 102400 kbps ~~~ Puis on applique les deux policy sur l'interface souhaitée :