本文讨论了在运行 OS9 的 Dell Networking 交换机上创建新端口通道或链路聚合组 (LAG) 并允许使用多个 VLAN 的过程。此示例使用链路聚合控制协议 (LACP)。
首先,从端口中删除当前配置,然后添加新的端口通道。有关静态端口通道的更多信息,请参阅 Dell Networking:如何在 OS9 FTOS 上配置 VLAN 并将端口关联到 VLAN。
对于固件 9.9 或更高版本:
命令 | 参数 |
FTOS> enable |
进入启用模式。 |
FTOS# configure |
进入配置模式 |
FTOS(conf)# default interface te 0/10 |
移除所有接口配置 |
FTOS(conf)# default interface te 0/11 |
移除所有接口配置 |
FTOS(conf)# interface range te 0/10-0/11 |
选择要用于端口通道的端口范围。 |
FTOS(conf-if-range-te-0/10-11)# no shutdown |
启用端口 |
FTOS(conf-if-range-te-0/10-11)# port-channel-protocol lacp |
为接口范围进入 LACP 配置模式 |
FTOS(conf-if-range-te-0/10-11-lacp)# port-channel 5 mode active |
添加端口通道 5,使用“active”指定 LACP。 |
FTOS(conf-if-range-te-0/10-11-lacp)# end |
离开配置模式 |
命令:
default interface te 0/10
将清除端口配置,包括端口上的 VLAN 配置,而不必手动删除每个设置。使用此命令需要固件 9.9 或更高版本。
对于固件 9.8 及更低版本:
命令 | 参数 |
FTOS> enable |
进入启用模式。 |
FTOS# configure |
进入配置模式 |
FTOS(conf)# interface range te 0/10-0/11 |
选择将用于端口通道的端口范围。 |
FTOS(conf-if-range-te-0/10-11)# no portmode hybrid |
如有必要,删除当前配置 |
FTOS(conf-if-range-te-0/10-11)# no switchport |
如有必要,删除当前配置 |
FTOS(conf-if-range-te-0/10-11)# port-channel-protocol lacp |
为接口范围进入 LACP 配置模式 |
FTOS(conf-if-range-te-0/10-11-lacp)# port-channel 5 mode active |
添加端口通道 5,使用“active”指定 LACP。 |
FTOS(conf-if-range-te-0/10-11-lacp)# end |
离开配置模式 |
Error: Te 0/10 Port is part of a non-default VLAN存在必须删除的 VLAN 配置。下面的示例显示了从端口 Te 0/10 中删除标记的 VLAN 2:
FTOS# config FTOS(conf)# Interface VLAN 2 FTOS(conf-if-vl-2)# no tagged te 0/10
FTOS(conf)# interface port-channel 5 FTOS(conf-if-po-5)# portmode hybrid FTOS(conf-if-po-5)# switchport
FTOS# show lacp 5 Port-channel 5 admin up, oper up, mode lacp LACP Fast Switch-Over Disabled Actor System ID:Priority 32768, Address 0001.e800.a12b Partner System ID:Priority 32768, Address 0001.e801.45a5 Actor Admin Key 1, Oper Key 1, Partner Oper Key 1 LACP LAG 5 is a normal LAG A - Active LACP, B - Passive LACP, C - Short Timeout, D - Long Timeout E - Aggregatable Link, F - Individual Link, G - IN_SYNC, H - OUT_OF_SYNC I - Collection enabled, J - Collection disabled, K - Distribution enabled L - Distribution disabled, M - Partner Defaulted, N - Partner Non-defaulted, O - Receiver is in expired state, P - Receiver is not in expired state Port Te 0/10 is enabled, LACP is enabled and mode is lacp Actor Admin: State ACEHJLMP Key 1 Priority 128 Oper: State ACEGIKNP Key 1 Priority 128 Partner Admin: State BDFHJLMP Key 0 Priority 0 Oper: State BCEGIKNP Key 1 Priority 128 Port Te 0/11 is enabled, LACP is enabled and mode is lacp Actor Admin: State ACEHJLMP Key 1 Priority 128 Oper: State ACEGIKNP Key 1 Priority 128 Partner Admin: State BDFHJLMP Key 0 Priority 0 Oper: State BCEGIKNP Key 1 Priority 128
FTOS(conf)# interface vlan 100 FTOS(conf-if-vl-100)# untagged port-channel 5要将 802.1Q 标记的 VLAN 添加到端口通道,请输入以下命令:
FTOS(conf)# interface vlan 200 FTOS(conf-if-vl-100)# tagged port-channel 5
copy running-configuration startup-configuration或者
write完成后。
LACP 长超时配置示例:
Dell(conf)# interface port-channel 32 Dell(conf-if-po-32)# no shutdown Dell(conf-if-po-32)# switchport Dell(conf-if-po-32)# lacp long-timeout Dell(conf-if-po-32)# end