12-09-2019 07:59 PM
Looking to trunk some vlans between a Cisco Catalyst switch and an Extreme VSP switch. Not having any luck. Here is the Cisco side:
interface GigabitEthernet1/0/52
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 103, 105, 110
switchport mode trunk
What would be the configuration of the port on the Extreme side?
Any help would be greatly appreciated.
Solved! Go to Solution.
12-10-2019 12:35 AM
For example for configuring port 1/1 as trunk use following commands.
conf t
interface GigabitEthernet 1/1
encapsulation dot1q
untagged-frames-discard
default-vlan-id 0
exit
vlan members add 103 1/1
vlan members add 105 1/1
vlan members add 110 1/1
exit
12-10-2019 04:38 PM
Thank you sir. Worked perfectly.
12-10-2019 12:41 AM
Dang it. On my cell phone Not sure how I marked my answer as the solution. Once I get back to my laptop I will see about resolving this. Ugh.
12-10-2019 12:39 AM
Thanks Martin. I will give this a try first thing tomorrow.
12-10-2019 12:35 AM
For example for configuring port 1/1 as trunk use following commands.
conf t
interface GigabitEthernet 1/1
encapsulation dot1q
untagged-frames-discard
default-vlan-id 0
exit
vlan members add 103 1/1
vlan members add 105 1/1
vlan members add 110 1/1
exit