Cisco 交换机Dlink交换机进行端口聚合实例(原创)

10楼部分办公区域网络改造,为了提供更高的带宽、更大的吞吐量和可恢复性的技术,采用端口聚合技术来传输数据。

涉及到的设备有cisco 千兆交换机与DLink交换机

拓扑图如下:

?

?

?两不同厂家设备如何进行调试:
1) cisco 交换机配置如下:
★设计port-channel100参数
interface Port-channel100
switchport
switchport trunk encapsulation dot1q
switchport mode trunk
no ip address
★ 配置交换机端口的channel
interface GigabitEthernet9/10
switchport
switchport mode trunk
no ip address
channel-group 100 mode on

interface GigabitEthernet9/11
switchport
switchport mode trunk
no ip address
channel-group 100 mode on

2)针对Dlink交换机进行静态汇聚,聚合
★在TRunking选项上,让49,50端口为一组

 

?

 

★ 在Vlan选项上把49 ,50端口打上Tag 标签
?

?

 

特别要注意:

1)两交换机端口一定是速度与双工相同
2) channel-group 1 mode 后面的参数有很多
sw1(config-if-range)#channel-group 1 mode ?
active        Enable LACP unconditionally
auto          Enable PAgP only if a PAgP device is detected
desirable     Enable PAgP unconditionally
on            Enable therchannel only
passive       Enable LACP only if a LACP device is detected
由于此款Dlink交换机是采用静态汇集模式,因此要采用on模式,on 是不用任何协议,强制开启,desirable 是用cisco的 PAGP 协议,并且是主动协商的。

 

09-13 10:16