思科交换机端口限速实战.doc

上传人:新** 文档编号:559742836 上传时间:2023-04-15 格式:DOC 页数:7 大小:42.01KB
返回 下载 相关 举报
思科交换机端口限速实战.doc_第1页
第1页 / 共7页
思科交换机端口限速实战.doc_第2页
第2页 / 共7页
思科交换机端口限速实战.doc_第3页
第3页 / 共7页
思科交换机端口限速实战.doc_第4页
第4页 / 共7页
思科交换机端口限速实战.doc_第5页
第5页 / 共7页
点击查看更多>>
资源描述

《思科交换机端口限速实战.doc》由会员分享,可在线阅读,更多相关《思科交换机端口限速实战.doc(7页珍藏版)》请在金锄头文库上搜索。

1、CISCO3550交换机作为我们单位的核心网络交换机,已经稳定运行了多年,功能上也能满足我们的需求,但是其端口限速功能却不像其它的一些交换机那样容易实现,好在最近找到了实现的办法,配置完成后,配合iperf这款测速软件进行验证,结果证明这个方法是行之有效的,下面是具体实现步骤。一、创建ACL由于这是一台三层交换机,所以虽然是对端口进行限速,但是还要考虑这个端口上通过的网络地址,本例中,我们选择对CISCO3550交换机的第22口进行限速,该端口属于VLAN66,IP地址段为10.66/16,所以首先要创建一个ACL,如下所示:3550#conf tEnter configuration com

2、mands, one per line. End with CNTL/Z.3550(config)#access-list 15 permit 10.66.0.0 0.0.255.255二、创建class-map3550#conf tEnter configuration commands, one per line. End with CNTL/Z.3550(config)#class-map dkxs3550(config-cmap)#match access-group 15这一步操作的主要目的就是创建了一个class-map,在这里面引用了我们事先创建好的ACL 15,方便我们以后对2

3、2端口进行操作。三、创建policy-map出于测试的需要,我们创建了多个policy-map,分别设置不同的限制带宽,如80k,1m,5m,10m,分别如下:3550#conf tEnter configuration commands, one per line. End with CNTL/Z.3550(config)#policy-map 80k3550(config-pmap)#class dkxs3550(config-pmap-c)# police 80000 8000 exceed-action drop3550#conf tEnter configuration comman

4、ds, one per line. End with CNTL/Z.3550(config)#policy-map 1m3550(config-pmap)#class dkxs3550(config-pmap-c)# police 1000000 100000 exceed-action drop3550#conf tEnter configuration commands, one per line. End with CNTL/Z.3550(config)#policy-map 5m3550(config-pmap)#class dkxs3550(config-pmap-c)# polic

5、e 5000000 500000 exceed-action drop3550#conf tEnter configuration commands, one per line. End with CNTL/Z.3550(config)#policy-map 10m3550(config-pmap)#class dkxs3550(config-pmap-c)# police 10000000 1000000 exceed-action drop四、查看配置信息3550#show runpolicy-map 5mclass dkxspolice 5000000 500000 exceed-act

6、ion droppolicy-map 1mclass dkxspolice 1000000 100000 exceed-action droppolicy-map 80kclass dkxspolice 80000 8000 exceed-action droppolicy-map 10mclass dkxspolice 10000000 1000000 exceed-action drop五、通过iperf软件进行验证即先在一台服务器上运行iperf的服务器端,命令如下:F:toolsiperf -s-Server listening on TCP port 5001TCP window s

7、ize: 8.00 KByte (default)-然后在交换机的22口上分别应用表示不同速率的policy-map,每应用一次,通过一台连接到22端口的笔记本电脑运行iperf的客户端,进行端口速率测试,结果分别如下:(交换机设置)3550(config-if)#service-policy input 80k(IPERF客户端测试结果)F:toolsiperf -c 10.66.66.8-Client connecting to 10.66.66.8, TCP port 5001TCP window size: 8.00 KByte (default)-1912 local 10.66.1

8、23.66 port 1147 connected with 10.66.66.8 port 5001 ID Interval Transfer Bandwidth1912 0.0-12.5 sec 104 KBytes 68.3 Kbits/secF:toolsiperf -c 10.66.66.8-Client connecting to 10.66.66.8, TCP port 5001TCP window size: 8.00 KByte (default)-1912 local 10.66.123.66 port 1151 connected with 10.66.66.8 port

9、 5001 ID Interval Transfer Bandwidth1912 0.0-12.0 sec 104 KBytes 70.8 Kbits/sec(交换机设置)3550(config-if)#service-policy input 1m(IPERF客户端测试结果)F:toolsiperf -c 10.66.66.8-Client connecting to 10.66.66.8, TCP port 5001TCP window size: 8.00 KByte (default)-1912 local 10.66.123.66 port 1155 connected with 1

10、0.66.66.8 port 5001 ID Interval Transfer Bandwidth1912 0.0-10.5 sec 1.08 MBytes 860 Kbits/secF:toolsiperf -c 10.66.66.8-Client connecting to 10.66.66.8, TCP port 5001TCP window size: 8.00 KByte (default)-1912 local 10.66.123.66 port 1159 connected with 10.66.66.8 port 5001 ID Interval Transfer Bandw

11、idth1912 0.0-10.0 sec 1.09 MBytes 910 Kbits/sec(交换机设置)3550(config-if)#service-policy input 5m(IPERF客户端测试结果)F:toolsiperf -c 10.66.66.8-Client connecting to 10.66.66.8, TCP port 5001TCP window size: 8.00 KByte (default)-1912 local 10.66.123.66 port 1163 connected with 10.66.66.8 port 5001 ID Interval

12、Transfer Bandwidth1912 0.0-10.5 sec 5.84 MBytes 4.67 Mbits/secF:toolsiperf -c 10.66.66.8-Client connecting to 10.66.66.8, TCP port 5001TCP window size: 8.00 KByte (default)-1912 local 10.66.123.66 port 1167 connected with 10.66.66.8 port 5001 ID Interval Transfer Bandwidth1912 0.0-10.7 sec 5.98 MBytes 4.68 Mbits/sec(交换机设置)3550(config-if)#service-policy input 10m

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 生活休闲 > 社会民生

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号