On my LB6M I did this:
Code:
interface 0/25
addport 1/1
exit
interface 0/26
addport 1/1
exit
interface 0/27
addport 1/1
exit
interface 0/28
addport 1/1
exit
interface 0/25
description 'LAG to Extreme Switch'
exit
interface 0/26
description 'LAG to Extreme Switch'
exit
interface 0/27
description 'LAG to Extreme Switch'
exit
interface 0/28
description 'LAG to Extreme Switch'
exit
interface 1/1
description 'LAG to Extreme Switch'
no port-channel static
vlan acceptframe vlanonly
vlan participation include 50,150,198-200,255,400,500,600
vlan tagging 50,150,198-200,255,400,500,600
exit
The "key" here was the "no port-channel static". Without that it's a LAG but doesn't do LACP.
On my Extreme Networks switch, I just ran this:
Code:
enable sharing 1:41 grouping 1:41-44 algorithm address-based L2 lacp
I also had to add port 1:41 to every VLAN.
On my LB6M it looks like this:
Code:
(LB6M 10GB) #show port-channel 1/1
Local Interface................................ 1/1
Channel Name................................... ch1
Link State..................................... Up
Admin Mode..................................... Enabled
Type........................................... Dynamic
Port-channel Min-links......................... 1
Load Balance Option............................ 3
(Src/Dest MAC, VLAN, EType, incoming port)
Mbr Device/ Port Port
Ports Timeout Speed Active
------ ------------- --------- -------
0/25 actor/long Auto True
partner/long
0/26 actor/long Auto True
partner/long
0/27 actor/long Auto True
partner/long
0/28 actor/long Auto True
partner/long
Note the "Type... Dynamic"
On my Extreme Networks switch, it looks like this:
Code:
Slot-1 Stack.9 # show lacp lag 1:41
Lag Actor Actor Partner Partner Partner Agg Actor
Sys-Pri Key MAC Sys-Pri Key Count MAC
--------------------------------------------------------------------------------
1:41 0 0x0411 e8:9a:8f:92:13:79 32768 0x001e 4 02:04:96:37:3e:56
Port list:
Member Port Rx Sel Mux Actor Partner
Port Priority State Logic State Flags Port
--------------------------------------------------------------------------------
1:41 0 Current Selected Collect-Dist A-GSCD-- 25
1:42 0 Current Selected Collect-Dist A-GSCD-- 26
1:43 0 Current Selected Collect-Dist A-GSCD-- 27
1:44 0 Current Selected Collect-Dist A-GSCD-- 28
================================================================================
Actor Flags: A-Activity, T-Timeout, G-Aggregation, S-Synchronization
C-Collecting, D-Distributing, F-Defaulted, E-Expired
I also had it all working as a static LAG, just change the LB6M back to static and on the Extreme just take off the 'lacp' part.