组网要求:Switch通过接口GE0/0/3与路由器互连,企业部门1和企业部门2通过接口GE0/0/1和GE0/0/2接入Switch,经由Switch和路由器访问网络。由于业务较单一,不需要对业务进行区分,但是网络带宽有限,因此需要对企业部门1(PC1和PC2)和企业部门2(PC3和PC4)的接入带宽进行整体限制。要求企业部门1出方向带宽限制为10Mbit/s;企业部门2出方向带宽限制为5Mbit/s。
视频加载中...
一、主要知识点:
接口限速简介
接口限速对通过整个端口的全部报文流量速率进行限制,不对具体流量进行区分,可以实现给某个接口分配固定的带宽,控制方式单一,配置简单。入方向与出方向的接口限速属于并列关系,用户可以根据需要同时配置,也可以单独配置。
二、配置思路:
1. 配置交换机和路由器的各接口,使用户能够访问网络。
2. 在Core接口GE0/0/1和GE0/0/2的入方向配置接口限速。
三、IP设置:
1、PC1:192.168.100.1/24
PC2:192.168.100.2/24
PC2:192.168.200.1/24
PC2:192.168.200.2/24
2、Core:vlanif100:192.168.100.254/24
Vlanif200:192.168.200.254/24
Vlanif300:172.16.31.1/24
3、Router:172.16.31.2/24
四、Core交换机的主要配置文件:
#
sysname Core
#
vlan batch 100 200 300
#
interface Vlanif100
ip address 192.168.100.254 255.255.255.0
#
interface Vlanif200
ip address 192.168.200.254 255.255.255.0
#
interface Vlanif300
ip address 172.16.31.1 255.255.255.0
#
interface MEth0/0/1
#
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 100
qos lr inbound cir 10000 cbs 1250000
#
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 200
qos lr inbound cir 5000 cbs 625000
#
interface GigabitEthernet0/0/3
port link-type access
port default vlan 300
#
ospf 1
area 0.0.0.0
network 172.16.31.0 0.0.0.255
network 192.168.100.0 0.0.0.255
network 192.168.200.0 0.0.0.255
#
user-interface con 0
user-interface vty 0 4
#
Return
五、SwitchA的主要配置文件:
#
sysname SwitchA
#
vlan batch 100
#
interface GigabitEthernet0/0/1
port link-type access
port default vlan 100
#
interface GigabitEthernet0/0/2
port link-type access
port default vlan 100
#
interface GigabitEthernet0/0/3
port link-type trunk
port trunk allow-pass vlan 100
#
return
六、SwitchB的主要配置文件:
#
sysname SwitchB
#
vlan batch 200
#
interface GigabitEthernet0/0/1
port link-type access
port default vlan 200
#
interface GigabitEthernet0/0/2
port link-type access
port default vlan 200
#
interface GigabitEthernet0/0/3
port link-type trunk
port trunk allow-pass vlan 200
#
return
七、Router路由器的主要配置文件:
#
sysname Router
#
interface GigabitEthernet0/0/0
ip address 172.16.31.2 255.255.255.0
#
ospf 1
area 0.0.0.0
network 172.16.31.0 0.0.0.255
#
return
八、验证配置结果:
在Core上查看接口限速的配置信息。
display qos lr inbound interface GigabitEthernet 0/0/1
GigabitEthernet0/0/1 lr inbound:
cir: 10000 Kbps, cbs: 1250000 Byte
// CIR(Committed Information Rate,承诺信息速率):
每秒可通过的速率,计量单位为Kbps (以bit 位为单位)。如设置为500Kbps 。每8bit位=1Byte 1Kbps=1024bit
//CBS(Committed Burst Size):
承诺突发尺寸,令牌桶的容量,即每次突发所允许的最大的流量尺寸。设置的突发尺寸必须大于最大报文长度。计量单位为byte(字节)。
display qos lr inbound interface GigabitEthernet 0/0/2
GigabitEthernet0/0/2 lr inbound:
cir: 5000 Kbps, cbs: 625000 Byte
本实验是通过华为模拟器eNSP1.3.00.100版(最新版)完成。该软件还包含CE、CX、NE40E、NE5000E、NE9000E、USG6000V的设备IOS,可完成复杂网络测试,需要该模拟器的朋友,可以转发此文关注小编,私信小编【666】即可获得。
关键词:设置交换机接口限速示例(交换机限速设置)