<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Voss Access/Trunk Port configuration in ExtremeSwitching (VSP/Fabric Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100378#M2434</link>
    <description>&lt;P&gt;Hi Support,&lt;/P&gt;&lt;P&gt;I have gone through the extreme documentation but still the configuration between access port and trunk port in VOSS cli is really confusing to me.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;vlan members 23 1/7 portmember I think refers to trunk port configuration on port 1/7&lt;/P&gt;&lt;P&gt;This article:&lt;A href="https://extreme-networks.my.site.com/ExtrArticleDetail?an=000104947" target="_blank"&gt;https://extreme-networks.my.site.com/ExtrArticleDetail?an=000104947&amp;nbsp;&lt;/A&gt;&amp;nbsp; Further adds to the configuration.&lt;/P&gt;&lt;P&gt;In the documentation, the there is also this Example:&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;For untagging the port in a VLAN:&lt;BR /&gt;#vlan create 12 type port-mstprstp 0 (Create VLAN and type)&lt;BR /&gt;#vlan mem 2/2 12 (Add it as a member)&lt;BR /&gt;#int gig 2/2&lt;BR /&gt;#encapsulation dot1q&lt;BR /&gt;#default-vlan-id port 2/2 12 (Specifying that vlan 12 is the default untagged vlan OR Native VLAN)&lt;BR /&gt;#untag-port-default-vlan (Specifying that vlan 12 will be used as untagged)&lt;BR /&gt;#exit&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;Kindly clarify with clear examples of the differences between access port and trunk port interface configuration in voss.&lt;/P&gt;&lt;P&gt;Thank you all!&lt;/P&gt;&lt;P&gt;Isaac.&lt;/P&gt;</description>
    <pubDate>Mon, 27 May 2024 14:14:14 GMT</pubDate>
    <dc:creator>Isaac001</dc:creator>
    <dc:date>2024-05-27T14:14:14Z</dc:date>
    <item>
      <title>Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100378#M2434</link>
      <description>&lt;P&gt;Hi Support,&lt;/P&gt;&lt;P&gt;I have gone through the extreme documentation but still the configuration between access port and trunk port in VOSS cli is really confusing to me.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;vlan members 23 1/7 portmember I think refers to trunk port configuration on port 1/7&lt;/P&gt;&lt;P&gt;This article:&lt;A href="https://extreme-networks.my.site.com/ExtrArticleDetail?an=000104947" target="_blank"&gt;https://extreme-networks.my.site.com/ExtrArticleDetail?an=000104947&amp;nbsp;&lt;/A&gt;&amp;nbsp; Further adds to the configuration.&lt;/P&gt;&lt;P&gt;In the documentation, the there is also this Example:&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;For untagging the port in a VLAN:&lt;BR /&gt;#vlan create 12 type port-mstprstp 0 (Create VLAN and type)&lt;BR /&gt;#vlan mem 2/2 12 (Add it as a member)&lt;BR /&gt;#int gig 2/2&lt;BR /&gt;#encapsulation dot1q&lt;BR /&gt;#default-vlan-id port 2/2 12 (Specifying that vlan 12 is the default untagged vlan OR Native VLAN)&lt;BR /&gt;#untag-port-default-vlan (Specifying that vlan 12 will be used as untagged)&lt;BR /&gt;#exit&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;Kindly clarify with clear examples of the differences between access port and trunk port interface configuration in voss.&lt;/P&gt;&lt;P&gt;Thank you all!&lt;/P&gt;&lt;P&gt;Isaac.&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2024 14:14:14 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100378#M2434</guid>
      <dc:creator>Isaac001</dc:creator>
      <dc:date>2024-05-27T14:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100387#M2436</link>
      <description>&lt;P&gt;To&amp;nbsp;&lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/47339"&gt;@Isaac001&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;The confusion regarding access and trunk ports in Voss is understandable. Here's a breakdown to clarify the differences with configuration examples.&lt;BR /&gt;An access port allows traffic for a single VLAN (untagged traffic). Used for devices that only need to communicate on one network (e.g., computers, printers).&lt;BR /&gt;A trunk port carries traffic for multiple VLANs (tagged traffic). Used for devices that need to communicate with multiple networks (e.g., routers, switches in different VLANs).&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;!
# Create VLAN 10
vlan create 10 type port-mstp-rstp 0

# Add interface GigabitEthernet 1/1 as a member of VLAN 10
vlan mem 1/1 10

# Configure GigabitEthernet 1/1 as an access port
interface GigabitEthernet 1/1
  no switchport mode trunk       # Don't configure as trunk mode
  switchport mode access          # Set mode to access
  default-vlan 10                # Set default VLAN to 10 (untagged traffic)
!&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;This configuration creates VLAN 10 and adds GigabitEthernet 1/1 as a member. The interface is then configured as an access port with default-vlan 10, specifying that all untagged traffic on this port belongs to VLAN 10.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;!
# Create VLANs 20 and 30
vlan create 20 type port-mstp-rstp 0
vlan create 30 type port-mstp-rstp 0

# Configure GigabitEthernet 2/2 as a trunk port
interface GigabitEthernet 2/2
  switchport mode trunk          # Set mode to trunk
  vlan member 20 30              # Add VLANs 20 and 30 as members (tagged traffic)
!&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This configuration creates VLANs 20 and 30. GigabitEthernet 2/2 is configured as a trunk port with switchport mode trunk. Then, VLANs 20 and 30 are explicitly added as members using vlan member, allowing tagged traffic for both VLANs on this port.&lt;/P&gt;&lt;P&gt;The main difference lies in the switchport mode and default-vlan commands.&lt;/P&gt;&lt;P&gt;Access Port no switchport mode trunk, default-vlan &amp;lt;vlan_id&amp;gt; (untagged traffic).&lt;BR /&gt;Trunk Port switchport mode trunk, vlan member &amp;lt;vlan_id1&amp;gt; &amp;lt;vlan_id2&amp;gt;... (tagged traffic).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 08:55:16 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100387#M2436</guid>
      <dc:creator>jeannette9728mi</dc:creator>
      <dc:date>2024-05-28T08:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100392#M2437</link>
      <description>&lt;P&gt;correct configuration examples, but not for Extreme VOSS &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;there is no "switchport mode" command in VOSS.&lt;/P&gt;&lt;P&gt;instead one would need to use "no ecapsulation dot1q" for access port (no trunk), and "encapsulation dot1q" for trunk.&lt;/P&gt;&lt;P&gt;if one than adds such ports to vlan(s), an access port would "move" from current /previously assigned VLAn to the new.&lt;/P&gt;&lt;P&gt;A trunk port would just add this VLAN additionally to the existing VLANs on the trunk port.&lt;/P&gt;&lt;P&gt;the "default-vlan-id" prameter is only relevant (and configurable), when encaps dot1Q is enabled on port.&lt;/P&gt;&lt;P&gt;It is required, if one wants a dedicated untagged vlan on this trunk ; this requires "untag-port-default-vlan enable" for the interface to be used on this port. otherwise the default-vlan-id is irrelevant.&lt;/P&gt;&lt;P&gt;hope this help,&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 12:48:09 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100392#M2437</guid>
      <dc:creator>gfriedl</dc:creator>
      <dc:date>2024-05-28T12:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100396#M2438</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We are talking VOSS in this discussion&lt;/P&gt;&lt;P&gt;It is and will always be confusing people when talking about TRUNK.&lt;BR /&gt;First of all, what is a TRUNK?, a TRUNK is a group/collection/... of things.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For Cisco oriented people a TRUNK is a group of ports (LAG link aggregation).&lt;/LI&gt;&lt;LI&gt;For some others (EXTREME is one of them) they talk TRUNK in regards to a group of vlan's assigned to a port or an MLT (Multi Link Trunk).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So for some people a TRUNK is a group of vlan's, for others it is a group of ports.&lt;BR /&gt;First of all when starting discussing TRUNK's, agree in what you understand a TRUNK is.&lt;/P&gt;&lt;P&gt;btw,&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The correct command to add a vlan to a port is "&lt;FONT face="courier new,courier"&gt;vlan members add 1111 1/25&lt;/FONT&gt;", so vlan first the the port.&lt;/LI&gt;&lt;LI&gt;The correct command to add a vlan to an MLT is "&lt;FONT face="courier new,courier"&gt;mlt 111 vlan 1111&lt;/FONT&gt;".&lt;BR /&gt;In the configuration it will be shown as port and MLT member, &lt;FONT color="#3366FF"&gt;see below&lt;/FONT&gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P class="lia-indent-padding-left-90px"&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;vlan create 1111 name "vlan_1111" type port-mstprstp 0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;vlan mlt 1111 111&lt;BR /&gt;vlan members 1111 1/11 portmember&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;On an untagged or access port vlan info is removed from the outgoing packets.&lt;/LI&gt;&lt;LI&gt;On a tagged port, all vlan's can be tagged or all vlan's can be tagged except one which is untagged.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 13:09:08 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100396#M2438</guid>
      <dc:creator>WillyHe</dc:creator>
      <dc:date>2024-05-28T13:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100403#M2439</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/22765"&gt;@gfriedl&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. The information is still not that clear to me about the difference between access and trunk port in voss. So far from&amp;nbsp; the replies I have noticed that &lt;EM&gt;trunk port&lt;/EM&gt;&amp;nbsp; should have &lt;STRONG&gt;encapsulation dot1q&lt;/STRONG&gt; but &lt;EM&gt;access port&lt;/EM&gt; &lt;STRONG&gt;no encapsulation dot1q.&amp;nbsp; &lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/22013"&gt;@WillyHe&lt;/a&gt;&amp;nbsp;&lt;/STRONG&gt;also mentioned that &lt;STRONG&gt;"The correct command to add a vlan to a port is "vlan members add 1111 1/25&lt;/STRONG&gt;,&lt;STRONG&gt;so vlan first the&lt;/STRONG&gt; &lt;STRONG&gt;port"&lt;/STRONG&gt; Kindly comment on this for clarification.&lt;/P&gt;&lt;P&gt;I did a test configuration on a test VOSS switch and the output was surprising to me. Port 1/3 has&amp;nbsp;&lt;STRONG&gt;default-vlan-id 10&amp;nbsp;&lt;/STRONG&gt; Its supposed to be a trunk port so why does it have its default as 10?&lt;/P&gt;&lt;P&gt;Kindly see the configuration I did and output of show port vlan and snippets of running config. I would appreciate if you would share a sample standard configuration that would differentiate access and trunk ports if my is not that good. Thanks&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;===THE WAY I CONFIGURED===&lt;/STRONG&gt;&lt;BR /&gt;!&lt;BR /&gt;vlan create 10 type port-mstprstp 0&lt;BR /&gt;vlan create 20 type port-mstprstp 0&lt;BR /&gt;!&lt;BR /&gt;int g1/1&lt;BR /&gt;no encapsulation dot1q&lt;BR /&gt;exit&lt;BR /&gt;!&lt;BR /&gt;int g1/2&lt;BR /&gt;no encapsulation dot1q&lt;BR /&gt;exit&lt;BR /&gt;!&lt;BR /&gt;vlan member 10 1/1&lt;BR /&gt;vlan member 20 1/2&lt;BR /&gt;!&lt;BR /&gt;int g1/3&lt;BR /&gt;encapsulation dot1q&lt;BR /&gt;exit&lt;BR /&gt;!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;======SHOW PORT VLAN AND SECTION PORT RUNNING CONFIG=======&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;====================================================================================================&lt;BR /&gt;Port Vlans&lt;BR /&gt;====================================================================================================&lt;BR /&gt;PORT DISCARD DISCARD DEFAULT VLAN PORT UNTAG DYNAMIC UNTAG&lt;BR /&gt;NUM TAGGING TAGFRAM UNTAGFRAM VLANID IDS TYPE DEFVLAN VLANS VLANS&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------&lt;BR /&gt;1/1 disable false false 10 10 normal disable P 10&lt;BR /&gt;1/2 disable false false 20 20 normal disable P 20&lt;BR /&gt;1/3 enable false false 10 10,20 normal disable P&lt;BR /&gt;#&lt;BR /&gt;# VLAN CONFIGURATION&lt;BR /&gt;vlan members remove 1 1/1-1/42,2/1-2/42 portmember&lt;BR /&gt;vlan create 10 type port-mstprstp 0&lt;BR /&gt;vlan members 10 1/1,1/3 portmember&lt;BR /&gt;vlan create 20 type port-mstprstp 0&lt;BR /&gt;vlan members 20 1/2-1/3 portmember&lt;BR /&gt;vlan create 4048 name "onboarding-vlan" type pvlan-mstprstp 0 secondary 4049&lt;BR /&gt;vlan i-sid 4048 15999999&lt;BR /&gt;#&lt;BR /&gt;# PORT CONFIGURATION - PHASE I&lt;BR /&gt;interface GigabitEthernet 1/3&lt;BR /&gt;encapsulation dot1q&lt;BR /&gt;exit&lt;BR /&gt;# PORT CONFIGURATION - PHASE II&lt;BR /&gt;interface GigabitEthernet 1/1&lt;BR /&gt;no shutdown&lt;BR /&gt;exit&lt;BR /&gt;interface GigabitEthernet 1/2&lt;BR /&gt;no shutdown&lt;BR /&gt;exit&lt;BR /&gt;interface GigabitEthernet 1/3&lt;BR /&gt;default-vlan-id 10&lt;BR /&gt;no shutdown&lt;BR /&gt;exit&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 18:44:22 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100403#M2439</guid>
      <dc:creator>Isaac001</dc:creator>
      <dc:date>2024-05-28T18:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100404#M2440</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/47343"&gt;@jeannette9728mi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response, the explanation helped a lot as I am from a Cisco background and I think you were trying to respond in that way. However&amp;nbsp;&lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/22765"&gt;@gfriedl&lt;/a&gt;&amp;nbsp; mentioned about the &lt;STRONG&gt;default-vlan-id&lt;/STRONG&gt;&amp;nbsp;and it threw me off a bit&amp;nbsp; and the difference between &lt;STRONG&gt;vlan member 1/1 10&lt;/STRONG&gt; and &lt;STRONG&gt;vlan member add/remove 10&lt;/STRONG&gt;&amp;nbsp; as mentioned by &lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/22013"&gt;@WillyHe&lt;/a&gt;&amp;nbsp; Otherwise thanks for shedding more light on it!&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; You can share more information about this?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac.&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 18:51:28 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100404#M2440</guid>
      <dc:creator>Isaac001</dc:creator>
      <dc:date>2024-05-28T18:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100405#M2441</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/22013"&gt;@WillyHe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response! Your explanation was heading somewhere until you mentioned MLT which is something am still grasping. So it threw me off your point.&amp;nbsp; Kindly use straight forward example of regular port interface. Otherwise, thanks for shedding light on it!&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Isaac.&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 18:55:41 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100405#M2441</guid>
      <dc:creator>Isaac001</dc:creator>
      <dc:date>2024-05-28T18:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100406#M2442</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Are we using VOSS commands here???&lt;/P&gt;&lt;P&gt;The only way to configure a trunk or tagged port or an access or untagged port in VOSS is&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;VOSS_SWITCH-01:1(config-if)#interface gigabitEthernet 1/25&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;VOSS_SWITCH-01:1(config-if)#encapsulation dot1q&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;VOSS_SWITCH-01:1(config-if)#no encapsulation dot1q&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Switchport, I think, is a Cisco command.&lt;/P&gt;&lt;P&gt;In VOSS (and also BOSS ERS), the default-vlan-id is always configured.&lt;BR /&gt;- When it is an access port then the default-vlan-id = automatically the to that port assigned vlan id and this cannot be changed.&lt;BR /&gt;- When it is a tagged or trunk port the default-vlan-id is also configured on the port but it has no meaning or effect unless untag-port-default-vlan is configured, then packets originating from the default-vlan-id are send out untagged (often used to tagg packets for an IP phone and untag packets for a PC connected behind the IP phone).&lt;/P&gt;&lt;P&gt;As an example I configured vlans 3000 3001 and 4000 on port 1/25 and configured vlan 4000 to be untaged.&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#3366FF"&gt;SMC-MCN-003-01:1#show interfaces gigabitEthernet vlan 1/25&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;************************************************************************************&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;Command Execution Time: Tue May 28 21:48:55 2024 CEST&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;************************************************************************************&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;====================================================================================================&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;Port Vlans&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;====================================================================================================&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;PORT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DISCARD&amp;nbsp; DISCARD&amp;nbsp;&amp;nbsp;&amp;nbsp; DEFAULT&amp;nbsp; VLAN&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PORT &amp;nbsp;&amp;nbsp; UNTAG&amp;nbsp; &amp;nbsp; DYNAMIC&amp;nbsp; UNTAG&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;NUM &amp;nbsp; TAGGING&amp;nbsp; TAGFRAM&amp;nbsp; UNTAGFRAM&amp;nbsp; VLANID&amp;nbsp;&amp;nbsp; IDS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp; &amp;nbsp; DEFVLAN&amp;nbsp; VLANS&amp;nbsp; &amp;nbsp; VLANS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;----------------------------------------------------------------------------------------------------&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;FONT color="#3366FF"&gt;1/25&amp;nbsp; enable &amp;nbsp; false&amp;nbsp; &amp;nbsp; false&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4000&amp;nbsp;&amp;nbsp;&amp;nbsp; 3000,3001,4000&amp;nbsp; normal&amp;nbsp; enable &amp;nbsp; P&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; 4000&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;----------------------------------------------------------------------------------------------------&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;DYNAMIC VLAN Legend:&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;P=Protocol enabled.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#3366FF"&gt;SMC-MCN-003-01:1#&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 19:58:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100406#M2442</guid>
      <dc:creator>WillyHe</dc:creator>
      <dc:date>2024-05-28T19:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100407#M2443</link>
      <description>&lt;P&gt;In VOSS, and MLT is equal to etherchannel or LACP static configuration, it groups (trunks &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;) multiple ports in a Link-Aggregation-Group or Multi-Link-Trunk (so here we also talk about "trunk").&lt;/P&gt;&lt;P&gt;To have vlan's tagged/trunked on an MLT, this is enable/disabled on the MLT interface, not on the MLT member ports, the MLT is controlling the ports, at least for a "static" MLT configuration.&lt;BR /&gt;When LACP is enabled on an MLT then enable/disable tagging is done on port level.&lt;/P&gt;&lt;P&gt;Every switch OS has his way of doing things, most are similar but there are always (small &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;) differences.&lt;/P&gt;&lt;P&gt;hope it helps clarifying&lt;BR /&gt;WillyHe&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 20:10:09 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/100407#M2443</guid>
      <dc:creator>WillyHe</dc:creator>
      <dc:date>2024-05-28T20:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/117173#M2763</link>
      <description>&lt;P&gt;&lt;FONT face="courier new,courier"&gt;your examples are fine. so 1/1 and 1/2 have tagging disabled, which means these are access (not trunk) ports.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Port 1/3 has encapsulation dot1q enabled, so is in trunk mode.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;regarding PVID: if a trunk was never attached to any VLAN, the PVID is just 0. if it was assigned, it changes to this vlan and it stays so, when you add other VLANs to the trunk. you might chnage it anytime and this is necessary, when you want/must use untagged native VLANs, which on VOSS is defined by this PVID. To use untagged native vlan, you must specify it by PVID and also set "untag-port-default-vlan" on this port (or mlt).&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2024 13:51:47 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/117173#M2763</guid>
      <dc:creator>gfriedl</dc:creator>
      <dc:date>2024-12-20T13:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Voss Access/Trunk Port configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/120477#M3093</link>
      <description>&lt;P data-unlink="true"&gt;Hi &lt;A href="https://community.extremenetworks.com/t5/user/viewprofilepage/user-id/47339" target="_self"&gt;@Isaac001&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;The confusion is understandable—VOSS handles VLAN membership a bit differently from other systems. Here’s a simple explanation.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access Port (untagged port):&lt;/STRONG&gt;&lt;BR /&gt;An access port carries traffic for only one VLAN, and all frames are sent and received untagged. Example:&lt;/P&gt;&lt;P&gt;vlan create 12 type port-mstprstp 0&lt;BR /&gt;vlan members 12 1/7&lt;BR /&gt;interface gig 1/7&lt;BR /&gt;encapsulation dot1q&lt;BR /&gt;default-vlan-id 1/7 12&lt;BR /&gt;untag-port-default-vlan&lt;BR /&gt;exit&lt;/P&gt;&lt;P&gt;This makes port 1/7 an untagged member of VLAN 12—ideal for endpoints like PCs or printers.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Trunk Port (tagged port):&lt;/STRONG&gt;&lt;BR /&gt;A trunk port carries multiple VLANs, tagging traffic so connected devices can distinguish between them. Example:&lt;/P&gt;&lt;P&gt;vlan create 12,23 type port-mstprstp 0&lt;BR /&gt;vlan members 12,23 1/7 portmember&lt;BR /&gt;interface gig 1/7&lt;BR /&gt;encapsulation dot1q&lt;BR /&gt;default-vlan-id 1/7 12&lt;BR /&gt;exit&lt;/P&gt;&lt;P&gt;Here, port 1/7 is a trunk that tags VLAN 23 and others, while VLAN 12 is untagged (the native VLAN).&lt;/P&gt;&lt;P&gt;The key difference is that &lt;STRONG&gt;“portmember” adds a tagged VLAN&lt;/STRONG&gt;, while without it the port is untagged. Each port can have one untagged VLAN but multiple tagged VLANs.&lt;/P&gt;&lt;P&gt;Best Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://epytv.com/" target="_self"&gt;EpyTV&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 11:26:47 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/voss-access-trunk-port-configuration/m-p/120477#M3093</guid>
      <dc:creator>RosemaryDavis</dc:creator>
      <dc:date>2025-10-09T11:26:47Z</dc:date>
    </item>
  </channel>
</rss>

