Published 10月 22, 2018 by with 0 comment

Cisco 限速(Bandwidth Control)




因為工作上需要, 就做了個簡單的測試.
所以分享以下的設定.

限速方式有兩種 (第一種比較好),
以下我分別介紹:

A:使用rate-limit
場景描述:
我要限制客戶端(VLAN 10)上/下傳平均為2000000bps = 2Mbps
最低速為240000(Bytes) = 1920000bps = 1.92Mbps
最高速為260000(Bytes) = 2080000bps = 2.08Mbps

結果:
從流量圖上來看, 會顯示較平坦的上下波動.

設定如下:
interface FastEthernet0/1.10
 description To_customer_limit 2M
 encapsulation dot1q 10
 rate-limit input 2000000 240000 260000 conform-action transmit exceed-action drop
 rate-limit output 2000000 240000 260000 conform-action transmit exceed-action drop


B: 使用service-policy
場景描述:
我要限制客戶端(VLAN 10)上/下傳平均為2000000bps = 2Mbps

結果:
這個設定不太好.
因為從流量圖上來看, 會顯示很大的上下波動(鋸齒型).

設定如下:
ip access-list extended ACL_TEST
 permit ip any host 192.168.10.10
!
class-map match-any CM_TEST 
 match access-group name ACL_TEST
 match class-map class-default
!
policy-map PM_TEST
 class CM_TEST
 police 2000000 conform-action transmit exceed-action drop
!
interface ethernet 0/1.10
 encapsulation dot1Q 10
 description To_customer_limit 2M
 service-policy output PM_TEST
 service-policy input PM_TEST



最初發表 / 最後更新: 2018.10.22 / 2018.10.22

0 comments:

張貼留言