cisco 3550 EMI交换机给VLAN网段限速

1910阅读 0评论2009-07-01 samwang816
分类:系统运维

3550 EMI交换机给网段限速

在3550 EMI上做速率限制是采用QOS的速率管制功能(policying),依次需要做如下配置。
  1、在所有端口上关闭流量控制

3550(config)#interface range gigabitEthernet 0/1 - 123550(config-if-range)#flowcontrol receive off3550(config-if-range)#flowcontrol send off


  2、启用

3550(config)#mls qos3550#show mls qosQoS is enabled


  3、依次配置ACL、Class-map、Policy-map并应用在Gi0/8接口下:

access-list 110 permit ip host 10.10.11.25 anyclass-map match-all All-IPTrafficmatch access-group 110policy-map QOSclass All-IPTrafficpolice 2048000 102400 exceed-action dropinterface GigabitEthernet0/8switchport access vlan 3switchport mode accessservice-policy input QOSflowcontrol send offno cdp enable


  4、经过检验,这个限速确实能起作用。
上一篇:VLAN划分的四种策略说明
下一篇:(原创)Solaris(64位)下安装Oracle10.2.0