I have two of your 24 port Gb switches called SSE-G24-TG2 with also two pieces 10Gb uplink modules called AOM-SSE-X2C, I successfully configured stacking on both switches and now want to configure link aggregation between both of them, how to set this up?
To configure Link Aggregation, login to master switch and do the following configuration
First enable the port channel feature:
SMIS# config term
SMIS(config)# set port-channel enable
Crate the port channel interface:
SMIS(config)# int port-channel 1
SMIS(config-if)# exit
Add ports to create the port channel interface:
SMIS(config)# int gi1/1
SMIS(config-if)# channel-group 1 mode on
SMIS(config-if)# exit
SMIS(config)# int gi2/1
SMIS(config-if)# channel-group 1 mode on
SMIS(config-if)# exit
Activate the created port channel:
SMIS(config)# int port-channel 1
SMIS(config-if)# no shut
SMIS(config-if)# exit