How to create a Port Channel/LACP/Link Aggregation on cnMatrix Switches

This article describes how to create a Port Channel (also called Link Aggregation or LACP) on cnMatrix Switches using cnMaestro, XMS-Cloud or the Command Line Interface (CLI). Once you have followed the instructions on how to create the port-channel on one Switch, it will need to be repeated on the connecting Switch too.

cnMaestro

  1. Login to cnMaestro

    CNM1

  2. Navigate to Switch Groups by clicking the Switch Groups icon in the menu on the left side of the page.

    cnmae1

  3. Select the Switch Group that the Switch you wish to add the Port Channel to

    cnmae4

  4. Select the Switch Ports option

    cnmae3

  5. Mark the tick box for the ports you wish to create the Port Channel on and click ‘Create Port Channel’

  6. Enter in the Port Channel number (any number between 1 and 65535 that isn’t already in use on the Switch), select Active or Passive mode and click Create

    cnmae5

  7. Once created, Sync the configuration by navigating the Menu system on the left and selecting Administration > Sync Configuration

    cnmae6

  8. Tick the box of the Switch you wish to Sync the configuration and click ‘Sync Now’

XMS-Cloud

  1. Login to XMS-Cloud

    XMSC1

  2. Navigate to the Switches tab

  3. Click the empty space between Hostname and Model (any empty space on the same line will work) to bring up the Switch ports

  4. Hover over and select the Switch ports you wish to aggregate

    xms3

  5. Ensure multiple ports are selected (notice it showing Port 5 and Port 7 in the example) and click the Actions drop down

    You may find you aren’t able to edit the Ports as they are in Read-Only mode. To change this, click the Administrator name in the top right, select Settings and scroll down to the bottom of the My Account page. Here you will find a slider that will allow you to change from Read-Only to Editable.

    xms4

  6. Select ‘Combine Ports’ to create the Port Channel

    xms5

  7. Ensure all settings are the same on both ports and Select Save Port Channel

cnMatrix CLI

  1. Login to the Switch via SSH or Console using an terminal application such as PuTTy

    putty

  2. Run the below commands

    conf t
    interface port-channel <number>
    no shut
    exit
    interface gigabitethernet 0/<num>
    channel-group <num> mode <active/passive>
    interface gigabitethernet 0/<num>
    channel-group <num> mode <active/passive>
    

    Here’s an example below, using 5 for the port channel number and selecting interface gigabit ethernet 9 & 10. You can change these numbers and interfaces to suit your needs.

    cli3

  3. Save the configuration by going back to terminal mode and typing

    copy running-config startup-config
    

    cli2

1 Like