rtwer 发表于 2014-12-18 08:18:41

Dell交换机配置链路聚合

5. 配置链路聚合说明:DELL 5524 交换机可以使用手动创建链路聚合,也可以使用 LACP 协议进行链路聚合。将交换机 19-20 端口设定为静态链路聚合,将 21-22 端口设定为LACP 动态链路聚合。DELL 55xx 系列交换机默认只能创建 32 个链路聚合组,每个组里最大只能有 8 个端口。因此静态链路聚合使用组 1,而 LACP 链路聚合使用组 2 5.1. 创建一个静态链路聚合console# configureterminalconsole(config)#interface range gigabitethernet 1/0/19-20console(config-if-range)#channel-group1 mode onconsole(config-if)#endconsole#5.2. 创建一个 LACP 动态链路聚合console# configureterminalconsole(config)#lacpsystem-priority 120console(config)#interface range gigabitethernet 1/0/19-20console(config-if-range)#lacpport-priority 247console(config-if-range)#lacptimeout longconsole(config-if)#endconsole#设置好了属性,下面开始创建聚合组console# configureterminalconsole(config)#interface range gigabitethernet 1/0/21-22console(config-if-range)#channel-group2 mode autoconsole(config-if)#endconsole#6. 开启端口 Flowcontrol 、Spanning-Tree、和 port-fast说明:Spanning-Tree 模式在 DELL 5524 交换机中默认开启,为 RSTP 模式。因此这里只讲述开启端口Flowcontrol 与 port-fast6.1. 开启或者关闭 Flowcontrol 功能以下以配置端口 1 为举例console# configureterminalconsole(config)#interface gigabitethernet 1/0/1console(config-if)#flowcontrol onconsole(config-if)#endconsole#关闭 Flowcontrol 则为以下操作console# configureterminalconsole(config)#interface gigabitethernet 1/0/1console(config-if)#flowcontrol offconsole(config-if)#endconsole#注意:致该端口重启。如果是批量端口,请使用 range 命令6.2. 开启或者关闭 port-fast 功能以下以配置端口 1 为举例console# configureterminalconsole(config)#interface gigabitethernet 1/0/1console(config-if)#spanning-tree portfastconsole(config-if)#endconsole#关闭 port-fast 则为以下操作console# configureterminalconsole(config)#interface gigabitethernet 1/0/1console(config-if)#no spanning-tree portfastconsole(config-if)#endconsole#注意:用于链路聚合的端口不能开启port-fast。如果是批量端口,请使用 range 命令7.iSCSI 模式DELL 交换机现在具有 iSCSI 优化配置功能,下面是开启 iSCSI 模式console# configureterminalconsole(config)#iscsienable
页: [1]
查看完整版本: Dell交换机配置链路聚合