第十二期小型网络构建-链路聚合

网友投稿 229 2022-10-24


第十二期小型网络构建-链路聚合

来自网络链路聚合(Link Aggregation),是指将多个物理端口捆绑在一起,成为一个逻辑端口,以实现出/ 入流量在各成员端口中的负荷分担,交换机根据用户配置的端口负荷分担策略决定报文从哪一个成员端口发送到对端的交换机。当交换机检测到其中一个成员端口的链路发生故障时,就停止在此端口上发送报文,并根据负荷分担策略在剩下链路中重新计算报文发送的端口,故障端口恢复后再次重新计算报文发送端口。链路聚合在增加链路带宽、实现链路传输弹性和冗余等方面是一项很重要的技术。如果聚合的每个链路都遵循不同的物理路径,则聚合链路也提供冗余和容错。通过聚合调制解调器链路或者数字线路,链路聚合可用于改善对公共网络的访问。链路聚合也可用于企业网络,以便在吉比特以太网交换机之间构建多吉比特的主干链路。原理:逻辑链路的带宽增加了大约(n-1)倍,这里,n为聚合的路数。另外,聚合后,可靠性大大提高,因为,n条链路中只要有一条可以正常工作,则这个链路就可以工作。除此之外,链路聚合可以实现负载均衡。因为,通过链路聚合连接在一起的两个(或多个)交换机(或其他网络设备),通过内部控制,也可以合理地将数据分配在被聚合连接的设备上,实现负载分担。因为通信负载分布在多个链路上,所以链路聚合有时称为负载平衡。但是负载平衡作为一种数据中心技术,利用该技术可以将来自客户机的请求分布到两个或更多的服务器上。 聚合有时被称为反复用或IMUX。如果多路复用是将多个低速信道合成为一个单个的高速链路的聚合,那么反复用就是在多个链路上的数据“分散”。它允许以某种增量尺度配置分数带宽,以满足带宽要求。链路聚合也称为中继。按需带宽或结合是指按需要添加线路以增加带宽的能力。在该方案中,线路按带宽的需求自动连接起来。聚合通常伴随着ISDN连接。基本速率接口支持两个64kbit/s的链路。一个可用于电话呼叫,而另一个可同时用于数据链路。可以结合这两个链路以建立l28kbit/s的数据链路。链路聚合有如下优点:1、增加网络带宽链路聚合可以将多个链路捆绑成为一个逻辑链路,捆绑后的链路带宽是每个独立链路的带宽总和。2、提高网络连接的可靠性链路聚合中的多个链路互为备份,当有一条链路断开,流量会自动在剩下链路间重新分配。链路聚合的方式主要有以下两种:1、静态Trunk静态Trunk将多个物理链路直接加入Trunk组,形成一条逻辑链路。2、动态LACPLACP(Link Aggregation Control Protocol,链路聚合控制协议)是一种实现链路动态汇聚的协议。LACP协议通过LACPDU(Link Aggregation Control Protocol Data Unit,链路聚合控制协议数据单元)与对端交互信息。激活某端口的LACP协议后,该端口将通过发送LACPDU向对端通告自己的系统优先级、系统MAC地址、端口优先级和端口号。对端接收到这些信息后,将这些信息与自己的属性比较,选择能够聚合的端口,从而双方可以对端口加入或退出某个动态聚合组达成一致。具体配置:实验要求设备 IP Mask 端口交换机A 192.168.1.11 255.255.255.0 0/0/1-2 trunking交换机B 192.168.1.12 255.255.255.0 0/0/3-4 trunkingPC1 192.168.1.101 255.255.255.0交换机A0/0/23PC2 192.168.1.102 255.255.255.0交换机B0/0/24如果链路聚合成功,则 PC1 可以ping 通 PC2。实验步骤第一步:正确连接网线,交换机全部恢复出厂设置,做初始配置,避免广播风暴【环路】出现交换机A:switch#configswitch(Config)#hostname switchAswitchA(Config)#interface vlan 1switchA(Config-If-Vlan1)#ip address 192.168.1.11 255.255.255.0switchA(Config-If-Vlan1)#no shutdownswitchA(Config-If-Vlan1)#exitswitchA(Config)#spanning-treeMSTP is starting now, please wait...........MSTP is enabled successfully.switchA(Config)#交换机B:switch#configswitch(Config)#hostname switchBswitchB(Config)#interface vlan 1switchB(Config-If-Vlan1)#ip address 192.168.1.12 255.255.255.0switchB(Config-If-Vlan1)#no shutdownswitchB(Config-If-Vlan1)#exitswitchB(Config)#spanning-treeMSTP is starting now, please wait...........MSTP is enabled successfully.switchB(Config)#第二步:创建port group交换机A:switchA(Config)#port-group 1switchA(Config)#验证配置:switchA#show port-group detailSorted by the ports in the group 1:

switchA#show port-group briefPort-group number : 1Number of ports in port-group : 0 Maxports in port-channel = 8Number of port-channels : 0 Max port-channels : 1switchA#交换机BswitchB(Config)#port-group 2switchB(Config)#第三步:手工生成链路聚合组(第三、四步任选其一操作)交换机A:switchA(Config-Port-Range)#port-group 1 mode onswitchA(Config-Port-Range)#exit验证配置:switchA#show vlanVLAN Name Type Media Ports

1 default Static ENET Ethernet0/0/3 Ethernet0/0/4Ethernet0/0/5 Ethernet0/0/6Ethernet0/0/7 Ethernet0/0/8Ethernet0/0/9 Ethernet0/0/10Ethernet0/0/11 Ethernet0/0/12Ethernet0/0/13 Ethernet0/0/14Ethernet0/0/15 Ethernet0/0/16Ethernet0/0/17 Ethernet0/0/18Ethernet0/0/19 Ethernet0/0/20Ethernet0/0/21 Ethernet0/0/22Ethernet0/0/23 Ethernet0/0/24Port-Channel1switchA# !port-channel1已经存在交换机B:switchB(Config)#int e 0/0/3-4switchB(Config-Port-Range)#port-group 2 mode onswitchB(Config-Port-Range)#exit验证配置:switchB#show port-group briefPort-group number : 2Number of ports in port-group : 2 Maxports in port-channel = 8Number of port-channels : 1 Max port-channels : 1switchB#第四步: LACP动态生成链路聚合组(第三、四步任选其一操作)switchA(Conifg-Port-Range)#port-group 1 mode active验证配置:switchA#show vlanVLAN Name Type Media Ports

1 default Static ENET Ethernet0/0/3 Ethernet0/0/4Ethernet0/0/5 Ethernet0/0/6Ethernet0/0/7 Ethernet0/0/8Ethernet0/0/9 Ethernet0/0/1Ethernet0/0/11 Ethernet0/0/1Ethernet0/0/13 Ethernet0/0/1Ethernet0/0/15 Ethernet0/0/1Ethernet0/0/17 Ethernet0/0/1Ethernet0/0/19 Ethernet0/0/2Ethernet0/0/21 Ethernet0/0/2Ethernet0/0/23 Ethernet0/0/2Port-Channel1switchA# !port-channel1已经存在交换机B:switchB(Config)#interface ethernet 0/0/3-4switchB(Conifg-Port-Range)#port-group 2 mode passiveswitchB(Config)#interface port-channel 2switchB(Config-If-Port-Channel2)#验证配置:switchB#show port-group briefPort-group number : 2Number of ports in port-group : 2 Maxports in port-channel = 8Number of port-channels : 1 Max port-channels : 1switchB#第五步:使用ping命令验证使用PC1 ping PC2交换机A 交换机B 结果 原因0/0/1 0/0/3 通链路聚合组连接正确0/0/2 0/0/40/0/1 0/0/3 通 拔掉交换机B端口4的网线,仍然可0/0/2 以通(需要一点时间),此时用show谢谢大家,此博文多数来自网络,谢谢支持


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:TCP/UDP,动态路由,RIP/OSPF/BGP简述
下一篇:java 调用本地扬声器的步骤
相关文章

 发表评论

暂时没有评论,来抢沙发吧~