cancel
Showing results for 
Search instead for 
Did you mean: 

Create port sharing on 1 VSP switch using 2 ports

Create port sharing on 1 VSP switch using 2 ports

Asifi
New Contributor II

Hello Community,

I have a pair of 8404 VSP switches and wish to create a LAG (port channel) using 2 ports on the same switch and NOT across 2 switches.  The ports are live and active and are plugged into the end device.

What is the best way to do this and does anyone have any examples of commands to use.  

Both ports currently have the correct VLAN assigned, it's a case of joining the ports for redundancy.

Thanks All.

1 ACCEPTED SOLUTION

Phil_
New Contributor III

Hey Asifi,

you can create a classic MLT. The configuration looks like this:

enable
conf t
#create mlt 1
mlt 1
# give mlt 1 a name
mlt 1 name ""
# add members to the mlt
mlt 1 member 1/1,1/2
# add vlan to the mlt member
vlan members add 100 1/1,1/2
# if you want to add more vlans to the mlt members, than you need to tag the mlt with the following command
mlt 1 encapsulation dot1q

be aware that both members need the same vlans configured with correct tagging to work properly.

best regards,

Philipp

View solution in original post

7 REPLIES 7

Asifi
New Contributor II

Thanks Everyone - that has done the trick :).

Thanks to everyone who contributed to this.

Best Regards,

Phil_
New Contributor III

Hey Asifi,

you can create a classic MLT. The configuration looks like this:

enable
conf t
#create mlt 1
mlt 1
# give mlt 1 a name
mlt 1 name ""
# add members to the mlt
mlt 1 member 1/1,1/2
# add vlan to the mlt member
vlan members add 100 1/1,1/2
# if you want to add more vlans to the mlt members, than you need to tag the mlt with the following command
mlt 1 encapsulation dot1q

be aware that both members need the same vlans configured with correct tagging to work properly.

best regards,

Philipp

Asifi
New Contributor II

@Phil_ Great - thanks for this, this has worked fine for me.  A slight curveball on this, if I now want to use 2 core switch ports on 2 DIFFERENT switches what would be the process for this.  I am thinking create an SMLT as split and patch the ports in?

Thanks,

Phil_
New Contributor III

Same steps as before. You just need to add the following configuration:

interface mlt 1
smlt
exit

Best regards,
Philipp

GTM-P2G8KFN