第一种:
Router(config-if)#traffic-shape ?
group configure token bucket: group
CIR (bps) [Bc (bits) [Be
(bits)]]
rate configure token bucket: CIR (bps) [Bc (bits) [Be (bits)]]
Router(config-if)#traffic-shape rate 10000000
整个端口限到10M,如果想对某些特定的网段限速的话,可以用访问列表。
access-list 1 permit 192.168.20.0 0.0.0.255
traffic-shape group 1 1000000 64000 64000
对网段192.168.20.0/24 进行限速,这种方法是进和出的方法都是一样的速度。
第二种:
Router(config-if)#rate-limit ?
input Rate limit on input
output Rate limit on output
rate-limit input 10000000
rate-limit output 10000000
rate-limit input access-group 1 10000000 64000 640000
第三种:
mls qos
class-map Class_1
match access-group 1
exit
policy-map Policy_1
class Class_1
police 1000000 conform-action transmit exceed-action drop
阅读(1893) | 评论(0) | 转发(0) |