Cisco2811配置Qos实现带宽分流 2020-06-27 网络 暂无评论 2856 次阅读 ``` conf t access-list 21 permit 192.168.1.100 0.0.0.0 //允许单个IP使用1M带宽,需要修改IP class-map match-all high-traffic match access-group 21 exit policy-map Qos class high-traffic bandwidth percent 25 exit //一个IP使用4M中的1M带宽,相当于四分之一 class class-default bandwidth percent 75 exit exit //剩余的四分之三带宽留给其他用户使用 int s0/0 //这个端口根据实际端口指定,比如实际端口是s0/0/0 max-reserved-bandwidth 100 service-policy output Qos end wr ``` 标签: cisco, qos, 2811 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。