1.以太网链路捆绑的原理
2.二层接口捆绑的配置方法
3.负载及冗余(rong yu)测试
实验拓扑正常情况下,交换机连接的两根线为了防止2层环路,由于生成树协议,会阻塞掉一根线端口,带宽不可能是两根线的和,通过链路捆绑技术,可以使两根线的带宽都起作用。
sw1#show interfaces fa1/13 查看1/13口的带宽 BW 100000 Kbit/sec, 相当于100m带宽
sw1(config)#int range fa1/13 -14 同时进入两个口1/13和1/14
sw1(config-if-range)#channel-group 1 mode on 1/13和1/14组号为1 同时开启
Creating a port-channel interface Port-channel1
sw1(config-if-range)#
*Mar 1 01:48:58.723: %EC-5-BUNDLE: Interface Fa1/13 joined port-channel Po1
生成新的口port-channel Po1
同理,在sw2上面也将两个端口合并成一个port-channel Po1端口开启
sw2(config)#interface range fa1/13 - 14
sw2(config-if-range)#channel-group 1 mode on
Creating a port-channel interface Port-channel1
sw2(config-if-range)#
*Mar 1 01:52:14.939: %EC-5-BUNDLE: Interface Fa1/13 joined port-channel Po1
*Mar 1 01:52:15.031: %EC-5-BUNDLE: Interface Fa1/14 joined port-channel Po1
sw1#show ip interface b可以看见Port-channel1
Interface IP-Address OK? Method Status Protocol
FastEthernet1/15 unassigned YES unset up down
Port-channel1 unassigned YES unset up up
Vlan1 unassigned YES unset up up
sw1#show interface port-channel 1 查看接口命令 BW 200000 Kbit/sec,变为200m
将sw1接口fa1/13关掉sw1(config)#interface fa1/13 sw1(config-if)#shut
同理sw2接口fa1/13也关掉 在用c1 ping c2 还是通(也就是说即使少了一根线,不影响流量通,还有一根线起作用,也就是线路的冗余)
再激活这两个交换机fa1/13端口sw1(config-if)#no shut sw2(config-if)#no shut ,流量又变成了两根线起作用,因此,如果还想增加流量,可以再用以上方法进行捆绑,并加入channel-group 1就行了。以上捆绑都是手动开启的,现网中有LASP协议等。
环路pc0发的报会在两台交换机之间不停的交换,形成广播风暴,因此必须阻塞两根线.
三种协议思科设备开启有三种,1种是LACP,两边都是active或者一边是active,一边是passive可以开启,或者一边是auto,一边是desirable,一般最好用on 手动开启就ok了。
通过show etherchannel summary 查看 端口情况,当3根线断掉1根或者2根,可以发现1根起作用的线负载变大,有延迟。
查看负载均衡的方法
sw1#show etherchannel ?
<1-6> Channel group number
brief Brief information
detail Detail information
load-balance Load-balance/frame-distribution scheme among ports in
port-channel(默认的基于源和目标地址的)
port Port information
port-channel Port-channel information
summary One-line summary per channel-group
基于源和目标地址的负载方法
sw1#show etherchannel load-balance
Po1 ---> Source XOR Destination IP address
查看负载均衡方式
sw1(config)#port-channel load-balance ?
dst-ip Dst IP Addr
dst-mac Dst Mac Addr
src-dst-ip Src XOR Dst IP Addr
src-dst-mac Src XOR Dst Mac Addr
src-ip Src IP Addr
src-mac Src Mac Addr
根据工程需求进行配置,思科gns3和给的模拟器只能实现2层以太网链路捆绑,不能实现3层链路捆绑,华为支持2层和3层进行捆绑,
网友评论