This article discusses the process to create a new port channel or Link Aggregation Group (LAG), and allowing multiple VLANs on Dell Networking switches running OS9. This example uses Link Aggregation Control Protocol (LACP).
First, remove the current configuration from the port, then add the new port channel. For more information about static port channels, see Dell Networking: How to Configure VLANs and Associate Ports to VLANs on OS9 FTOS.
For Firmware 9.9 or newer:
Command | Parameter |
FTOS> enable |
Enter enable mode. |
FTOS# configure |
Enter configuration mode |
FTOS(conf)# default interface te 0/10 |
Remove all interface configuration |
FTOS(conf)# default interface te 0/11 |
Remove all interface configuration |
FTOS(conf)# interface range te 0/10-0/11 |
Select the range of ports that to be used for the Port Channel. |
FTOS(conf-if-range-te-0/10-11)# no shutdown |
Enable the ports |
FTOS(conf-if-range-te-0/10-11)# port-channel-protocol lacp |
Enter LACP configuration mode for the interface range |
FTOS(conf-if-range-te-0/10-11-lacp)# port-channel 5 mode active |
Add Port Channel 5, use "active" to specify LACP. |
FTOS(conf-if-range-te-0/10-11-lacp)# end |
Leave configuration mode |
The command:
default interface te 0/10
will clear the port configuration, including the VLAN configuration on the port, instead having to remove each setting manually. Firmware 9.9 or newer is required to use this command.
For Firmware 9.8 and older:
Command | Parameter |
FTOS> enable |
Enter enable mode. |
FTOS# configure |
Enter configuration mode |
FTOS(conf)# interface range te 0/10-0/11 |
Select the range of ports that will be used for the Port Channel. |
FTOS(conf-if-range-te-0/10-11)# no portmode hybrid |
Remove current configuration, if needed |
FTOS(conf-if-range-te-0/10-11)# no switchport |
Remove current configuration, if needed |
FTOS(conf-if-range-te-0/10-11)# port-channel-protocol lacp |
Enter LACP configuration mode for the interface range |
FTOS(conf-if-range-te-0/10-11-lacp)# port-channel 5 mode active |
Add Port Channel 5, use "active" to specify LACP. |
FTOS(conf-if-range-te-0/10-11-lacp)# end |
Leave configuration mode |
Error: Te 0/10 Port is part of a non-default VLANthere is VLAN configuration that has to be removed. The below example shows removing VLAN 2 tagged from port Te 0/10:
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 5To add an 802.1Q tagged VLAN to a port channel, input the following commands:
FTOS(conf)# interface vlan 200 FTOS(conf-if-vl-100)# tagged port-channel 5
copy running-configuration startup-configurationor
writewhen finished.
Example or LACP Long Timeout configuration:
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