问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

CISCO 链路聚合的怎么回事??求原理 求配置命令!

发布网友 发布时间:2022-04-23 10:54

我来回答

2个回答

热心网友 时间:2023-05-08 07:59

链路聚合是将两个或更多数据信道结合成一个单个的信道,该信道以一个单个的更高带宽的逻辑链路出现。链路聚合一般用来连接一个或多个带宽需求大的设备,例如连接骨干网络的服务器或服务器群
一、 实验要求
  设备 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 trunking   
PC1 192.168.1.101 255.255.255.0 交换机 A0/0/23   
PC2 192.168.1.102 255.255.255.0 交换机 B0/0/24   
如果链路聚合成功,则 PC1 可以ping 通 PC2。
二、 实验步骤
  第一步:正确连接网线,交换机全部恢复出厂设置,做初始配置,避免广播风暴出现   
交换机A:   switch#config   
switch(Config)#hostname switchA   
switchA(Config)#interface vlan 1   
switchA(Config-If-Vlan1)#ip address 192.168.1.11 255.255.255.0   
switchA(Config-If-Vlan1)#no shutdown   
switchA(Config-If-Vlan1)#exit   
switchA(Config)#spanning-tree   
MSTP is starting now, please wait...........   
MSTP is enabled successfully.   
switchA(Config)#   
交换机B:   switch#config   
switch(Config)#hostname switchB   
switchB(Config)#interface vlan 1   
switchB(Config-If-Vlan1)#ip address 192.168.1.12 255.255.255.0  
 switchB(Config-If-Vlan1)#no shutdown  
 switchB(Config-If-Vlan1)#exit  
 switchB(Config)#spanning-tree  
 MSTP is starting now, please wait...........
  MSTP is enabled successfully.  
 switchB(Config)#   
第二步:创建port group   
交换机A:   switchA(Config)#port-group 1  
 switchA(Config)#  
 验证配置:   switchA#show port-group detail   Sorted by the ports in the group 1:   --------------------------------------------   
switchA#show port-group brief   Port-group number : 1   Number of ports in port-group : 0 Maxports in port-channel = 8   Number of port-channels : 0 Max port-channels : 1   switchA#   
交换机B   
switchB(Config)#port-group 2  
 switchB(Config)#  
 第三步:手工生成链路聚合组(第三、四步任选其一操作)  
 交换机A:   switchA(Config)#interface ethernet 0/0/1-2  
 switchA(Config-Port-Range)#port-group 1 mode on  
 switchA(Config-Port-Range)#exit   
switchA(Config)#interface port-channel 1   
switchA(Config-If-Port-Channel1)#  
 验证配置:   switchA#show vlan   VLAN Name Type Media Ports   ---- ------------ ---------- --------- -------------------   1 default Static ENET Ethernet0/0/3 Ethernet0/0/4   Ethernet0/0/5 Ethernet0/0/6   Ethernet0/0/7 Ethernet0/0/8   Ethernet0/0/9 Ethernet0/0/10   Ethernet0/0/11 Ethernet0/0/12   Ethernet0/0/13 Ethernet0/0/14   Ethernet0/0/15 Ethernet0/0/16   Ethernet0/0/17 Ethernet0/0/18   Ethernet0/0/19 Ethernet0/0/20   Ethernet0/0/21 Ethernet0/0/22   Ethernet0/0/23 Ethernet0/0/24   Port-Channel1   switchA# !port-channel1已经存在   交换机B:   switchB(Config)#int e 0/0/3-4   switchB(Config-Port-Range)#port-group 2 mode on   switchB(Config-Port-Range)#exit   switchB(Config)#interface port-channel 2   switchB(Config-If-Port-Channel2)#   验证配置:   switchB#show port-group brief   Port-group number : 2   Number of ports in port-group : 2 Maxports in port-channel = 8   Number of port-channels : 1 Max port-channels : 1   switchB#   第四步: LACP动态生成链路聚合组(第三、四步任选其一操作)   switchA(Config)#interface ethernet 0/0/1-2   switchA(Conifg-Port-Range)#port-group 1 mode active   switchA(Config)#interface port-channel 1   switchA(Config-If-Port-Channel1)#   验证配置:   switchA#show vlan   VLAN Name Type Media Ports   ---- ------------ ---------- --------- -------------------   1 default Static ENET Ethernet0/0/3 Ethernet0/0/4   Ethernet0/0/5 Ethernet0/0/6   Ethernet0/0/7 Ethernet0/0/8   Ethernet0/0/9 Ethernet0/0/1   Ethernet0/0/11 Ethernet0/0/1   Ethernet0/0/13 Ethernet0/0/1   Ethernet0/0/15 Ethernet0/0/1   Ethernet0/0/17 Ethernet0/0/1   Ethernet0/0/19 Ethernet0/0/2   Ethernet0/0/21 Ethernet0/0/2   Ethernet0/0/23 Ethernet0/0/2   Port-Channel1   switchA# !port-channel1已经存在   交换机B:   switchB(Config)#interface ethernet 0/0/3-4   switchB(Conifg-Port-Range)#port-group 2 mode passive   switchB(Config)#interface port-channel 2   switchB(Config-If-Port-Channel2)#   验证配置:   switchB#show port-group brief   Port-group number : 2   Number of ports in port-group : 2 Maxports in port-channel = 8   Number of port-channels : 1 Max port-channels : 1   switchB#   第五步:使用ping命令验证   使用PC1 ping PC2   交换机A 交换机B 结果 原因   0/0/1 0/0/3 通 链路聚合组连接正确   0/0/2 0/0/4   0/0/1 0/0/3 通 拔掉交换机B端口4的网线,仍然可   0/0/2 以通(需要一点时间),此时用show

热心网友 时间:2023-05-08 07:59

trunk技术原理就是将多个链路的信息*起来 通过一条链路发送出去 发送的同时也可以接受数据 一般在交换机上用到这个技术 比如交换机2950分配了多个VLAN:vlan 2(端口为2-8管理ip为192.168.2.254) ,vlan3(9-16,192.168.3.254),vlan4(10-24,192.168.4.254)..等等。那么这些VLAN信息如何传给路由器呢 这就用到TRUNK技术了 将端口1配置为TRUNK模式 那么所有的VLAN信息2.0,3.0.4.0各个网段的数据都可以通过这个端口1发送出去 同时可以接收别的设备转发过来的数据 当然还有链路的聚合 将2-8端口同网段可以配置成TRUNK 增加其发送和接收数据带宽 能够更有效的传输数据
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
结核病是什么样的疾病? 曹丕17岁得了肺痨,明知自己命不长久,还要强争王位,是不是很自私呢?_百... 古代小说常出现的病名 急求一篇"生活小窍门"(500字)的作文 至今最有什么小妙招 健康的戒烟方法 笔记本电池锁死是什么原因引起的? 黑龙江债权转让合同纠纷该怎样取证 安徽债权转让合同纠纷应该怎么样取证 房产官司律师费多少 什么是链路聚合?链路聚合的功能是什么? 哈密瓜没切开能放多久 增值税纳税人分为哪几类?具体是怎么划分的 增值税纳税人怎么划分,分几类 企业所得税的纳税人分几种?它们判定标准是什么? 纳税人分几种? 纳税人分几种?? 纳税人分为哪几种?一般纳税人有什么好处? 不打电话不发短信怎么知道对方有没有把自己加黑名单,对方是苹果手机 纳税人分为三类 手机通讯录在不打电话不发信息的情况下怎么知道他有没有把我拉黑 纳税人分几种 iPhone如何不用打电话的方式知道自己是否被对方拉黑? 在不打电话情况下,怎么能知道他有没有把你拉黑(移动手机卡)? 不打电话怎么能知道他有没有把你拉黑(移动的) 怎么通过不打电话就能知道对方有没有把自己手机号拉黑啊 怎么通过不打电话就能知道对方有没有把自己手机号拉黑啊? 如何能在不打电话的情况下知道对方是否把我拉黑名单了?是手机号码!_百度问一问 不打电话怎么看自己有没有被对方拉黑? 怎样能在不打电话的情况下知道对方有没有把我拉黑? Cisco链路聚合和stp的区别,以及我还有好多问题 iphone110查询不到激活日期但是查到销售日期2010年2月3日 果粉查询的购买时间是2011年7月14日 思科交换机链路聚合命令是什么?还有顺带说下意思。谢谢哈。 扣扣314527726 思科模拟3560交换机链路聚合 cisco stp 中的链路聚合 什么叫首发原始股东? cisco链路聚合 cisco链路聚合配置 首发上市什么意思? 什么叫首发原始股东 首发战略配售股是什么意思? cisco以太链路聚合 使用的命令? 首发原股东限售股份是什么意思 cisco 端口汇聚和链路聚合怎么配置 两者有区别吗 什么是首发限售股? 思科 链路聚合成功 接口为access模式 所在vlan相同 vlan设置好了ip_百... 首发公开增发网下配售股份是什么意思? cisco和华为之间怎么样配置链路聚合 首发原股东限售股份首发战略配售股份 某股可上市流通460.00万股,类型:首发机构配售股份是什么意思