Multi-Chassis Link Aggregation Group (MCLAG) is a link aggregation technique where two or more links across two switches are aggregated together to form a trunk.
Create the MCLAG interface:
switch(config)# interface lag LAG multi-chassis
switch(config-lag-if)# no shutdown
Associate member links with the MCLAG interface:
switch(config)# interface IFACE
switch(config-if)# no shutdown switch(config-if)# lag LAG
Show commands to validate functionality:
show mclag <brief|configuration|status>
switch(config)# interface lag 23 multi-chassis
switch(config-lag-if)# no shutdown
switch(config-lag-if)# exit
switch(config)# interface 1/1/10
switch(config-if)# no shutdown
switch(config-if)# lag 23
switch(config-if)# end
show
commands is correct