08-01-2023 06:16 PM
I'm replacing an Enterasys SG8201-0848-F8 with a new Cisco Core Switch.
The Access is all Extreme EXOS and everything is running RSTP. I'm familiar with Cisco but not Enterasys/Extreme. For ease of interopability I will use MSTP on the Cisco with all VLANs in the CIST.
I'm going through the configurations and need some help:
e.g.
interface gi2/37
switchport mode access
switcport access vlan 300
I can't imagine its creating a trunk port with a single vlan then making it the native vlan
e.g.
interface gi2/37
switchport mode trunk
switchport trunk allowed vlan 300
switchport native vlan 300
regards,
Steven
Solved! Go to Solution.
08-02-2023 05:53 AM
Hi Steven,
The .1 line will remove lag.0.1-190;ge.2.1-48;tg.4.1-24 from VLAN 1 egress list.
The .2 line : frames in VLAN 300 will leave the port ge.2.37 with no tag. This command is only applicable for frames, that leave the switch for any connected device on this port.
The .3 line : frames with no tags arriving on the port ge.2.37 will be put into VLAN 300. This command changes behavior for incoming frames on port ge.2.37.
You can combinate the both commands in only one : set port ge.2.37 300 modify-egress.
The .2 & .3 line is the equivalent of the following Cisco commands :
interface gi2/37
switchport mode access
switch access vlan 300
KR
Kevin
08-02-2023 05:53 AM
Hi Steven,
The .1 line will remove lag.0.1-190;ge.2.1-48;tg.4.1-24 from VLAN 1 egress list.
The .2 line : frames in VLAN 300 will leave the port ge.2.37 with no tag. This command is only applicable for frames, that leave the switch for any connected device on this port.
The .3 line : frames with no tags arriving on the port ge.2.37 will be put into VLAN 300. This command changes behavior for incoming frames on port ge.2.37.
You can combinate the both commands in only one : set port ge.2.37 300 modify-egress.
The .2 & .3 line is the equivalent of the following Cisco commands :
interface gi2/37
switchport mode access
switch access vlan 300
KR
Kevin