3 weeks ago
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.
Solved! Go to Solution.
3 weeks ago
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
a week ago
Thanks Everyone - that has done the trick :).
Thanks to everyone who contributed to this.
Best Regards,
3 weeks ago
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
2 weeks ago
@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,
a week ago
Same steps as before. You just need to add the following configuration:
interface mlt 1
smlt
exit
Best regards,
Philipp