cisco交换机限速
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cisco交换机限速相关的知识,希望对你有一定的参考价值。
限制服务器下载:
speed 10
srr-queue bandwidth limit 50 (此时的服务器下载被限制到10M的百分之50也就是5M)
speed 100
srr-queue bandwidth limit 50 (此时的服务器下载被限制到100M的百分之50也就是50M)
显然这条限速下载的命令是配合着端口协议在使用
限制服务器上传: (如果要限制上传下载都到10M,直接speed 10就OK了)
1、在交换机上启动QOS
mls qos
//在交换机上启动QOS
2、定义类,创建一个匹配所有流量的类
class-map match-all IPclass
//定义SV1的上行的类,并绑定所有ip流量
match ip dscp default
exit
3、定义策略,把上面定义的类绑定到该策略
//10M
policy-map xiansu_up-10M
class IPclass
police 10000000 1000000 exceed-action drop
exit
exit
//定义PC1上行的速率为10M,超过的丢弃
//20M:
policy-map xiansu_up-20M
class IPclass
police 20000000 1000000 exceed-action drop
exit
exit
//定义PC1上行的速率为20M,超过的丢弃
//30M:
policy-map xiansu_up-30M
class IPclass
police 30000000 1000000 exceed-action drop
exit
exit
//定义PC1上行的速率为30M,超过的丢弃
//50M:
policy-map xiansu_up-50M
class IPclass
police 50000000 1000000 exceed-action drop
exit
exit
//定义PC1上行的速率为50M,超过的丢弃
4、在接口上运用策略
interface GigabitEthernet0/9
service-policy input xiansu_up-10M
exit
exit
wr
本文出自 “11393002” 博客,谢绝转载!
以上是关于cisco交换机限速的主要内容,如果未能解决你的问题,请参考以下文章
Cisco 2960 3750交换机端口流量的限速(QOS)详解