<?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 RE: Other ports are using the same key. Can not change port vlan membership. in ExtremeSwitching (VSP/Fabric Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8746#M327</link>
    <description>&lt;P&gt;Hi Miguel,&lt;/P&gt;  &lt;P&gt;Thanks for posting.&lt;/P&gt;  &lt;P&gt;I’ve made the changes in this case, but next time I come across it I’ll give it a go.&amp;nbsp;&lt;/P&gt;  &lt;P&gt;I actually think I hit a requirement where I needed to disable LACP on the MLT to get it to allow me to add more VLAN’s to those ports&lt;/P&gt;  &lt;P&gt;Noticed the link I provided didn’t seem to work so adding it here again, as it explains the issue I hit and the limitations around why I think I was hitting it.&lt;/P&gt;  &lt;P&gt;&lt;A href="https://extreme.connectedcommunity.org/communities/community-home/digestviewer/view-question?ContributedContentKey=30a4c74b-4cc5-4ae9-a7d9-6c3117ae0154&amp;amp;CommunityKey=efaccd87-cd58-4b48-8fdc-6c1c39b7c3db&amp;amp;tab=digestviewer" target="_self" rel="noreferrer"&gt;https://community.extremenetworks.com/extremeswitching-vsp-ers-232923/tagging-vlan-on-lacp-on-vsp8600-7810429&lt;/A&gt;&lt;/P&gt;  &lt;P&gt;My concern is that if I have an active port and I want to add another VLAN to it I don’t have to disable LACP first just to add a VLAN?&lt;/P&gt;  &lt;P&gt;Still finding my feet with it a little, so more experience will let it sink in as to the reason why and why it might not matter and ways to configure it.&lt;/P&gt;  &lt;P&gt;When using LACP it did seem to throw all sorts of different errors from various different angles when configuring other elements,&amp;nbsp;that didn’t either make sense or something that typically isn’t usually a challenge, but getting their slowly &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;  &lt;P&gt;Thanks again.&lt;/P&gt;  &lt;P&gt;Cheers,&lt;/P&gt;  &lt;P&gt;Martin&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jul 2020 04:21:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-07-13T04:21:00Z</dc:date>
    <item>
      <title>Other ports are using the same key. Can not change port vlan membership.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8743#M324</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;  &lt;P&gt;Thought I would share this problem I recently run into and how I got around it.&lt;/P&gt;  &lt;P&gt;When trying to add a port to a VLAN i get the following error:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;Other ports are using the same key. Can not change port vlan membership.&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;When I use the command something like the following:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;vlan members 26 2/1-2/2,2/21,2/23-2/24,3/21,3/24,4/23-4/24,5/24,6/23-6/24 portmember&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;A typical configuration that is use is something like the following. I’m using LACP due to connecting to B/C-Series switch and found the use of LACP preferential to making sure the MLT formed properly&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;interface mlt 45&lt;BR /&gt;&amp;nbsp; &amp;nbsp;lacp enable key 45&lt;BR /&gt;&lt;BR /&gt;interface GigabitEthernet 2/1&lt;BR /&gt;&amp;nbsp; &amp;nbsp;lacp key 45 aggregation enable timeout-time short&lt;BR /&gt;&amp;nbsp; &amp;nbsp;lacp enable&lt;BR /&gt;exit&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;The command seems to work if I only add one port at a time, which think is what the error is trying to tell me:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;vlan members 26 2/1 portmember&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;Based on this article and the use of Ludovico’s ACLI tool as per this article:&lt;/P&gt;  &lt;P&gt;&lt;A href="https://extreme.connectedcommunity.org/communities/community-home/digestviewer/view-question?ContributedContentKey=a5ec263f-26d6-42d1-ab82-4ddac81d885a&amp;amp;CommunityKey=efaccd87-cd58-4b48-8fdc-6c1c39b7c3db&amp;amp;tab=digestviewer" target="_self" rel="noreferrer"&gt;https://community.extremenetworks.com/extremeswitching-vsp-ers-232923/voss-can-t-add-multiple-vlans-to-a-port-or-vlans-to-an-mlt-or-port-from-vlan-7828809&lt;/A&gt;&lt;/P&gt;  &lt;P&gt;I solve the problem this way:&lt;/P&gt;  &lt;P&gt;First created a varible as I want to use a common set of ports:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;$mainprts = 2/1-2/2,2/21,2/23-2/24,3/21,3/24,4/23-4/24,5/24,6/23-6/24&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;Once done I could use the following command that rolls through each port at a time:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;vlan members 2 %s portmember &amp;amp;'$mainprts&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;On executing the command it does the following…&amp;nbsp;Awesome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;  &lt;P&gt;V&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;SP2:1(config)#% vlan members 2 %s portmember &amp;amp;'$mainprts&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vars% vlan members 2 %s portmember &amp;amp;'2/1-2/2,2/21,2/23-2/24,3/21,3/24,4/23-4/24,5/24,6/23-6/24&lt;BR /&gt;VSP2:1(config)#% vlan members 2 2/1 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 2/2 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 2/21 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 2/23 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 2/24 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 3/21 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 3/24 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 4/23 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 4/24 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 5/24 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 6/23 portmember&lt;BR /&gt;VSP2:1(config)#% vlan members 2 6/24 portmember&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 02:06:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8743#M324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-10T02:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: Other ports are using the same key. Can not change port vlan membership.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8744#M325</link>
      <description>&lt;P&gt;Just found this article so may have been more to it, but here for reference:&lt;/P&gt;  &lt;P&gt;&lt;A href="https://getsatisfaction.com/extreme/topics/tagging-vlan-on-lacp-on-vsp8600" target="_blank" rel="nofollow noreferrer noopener"&gt;https://getsatisfaction.com/extreme/topics/tagging-vlan-on-lacp-on-vsp8600&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 02:16:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8744#M325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-10T02:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: Other ports are using the same key. Can not change port vlan membership.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8745#M326</link>
      <description>&lt;P&gt;Martin&lt;/P&gt;  &lt;P&gt;Did you tried the following?:&lt;/P&gt;  &lt;P&gt;&lt;STRONG&gt;vlan members add 26 2/1-2/2,2/21,2/23-2/24,3/21,3/24,4/23-4/24,5/24,6/23-6/24&lt;/STRONG&gt;&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Mig&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 03:27:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8745#M326</guid>
      <dc:creator>Miguel-Angel_RO</dc:creator>
      <dc:date>2020-07-13T03:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Other ports are using the same key. Can not change port vlan membership.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8746#M327</link>
      <description>&lt;P&gt;Hi Miguel,&lt;/P&gt;  &lt;P&gt;Thanks for posting.&lt;/P&gt;  &lt;P&gt;I’ve made the changes in this case, but next time I come across it I’ll give it a go.&amp;nbsp;&lt;/P&gt;  &lt;P&gt;I actually think I hit a requirement where I needed to disable LACP on the MLT to get it to allow me to add more VLAN’s to those ports&lt;/P&gt;  &lt;P&gt;Noticed the link I provided didn’t seem to work so adding it here again, as it explains the issue I hit and the limitations around why I think I was hitting it.&lt;/P&gt;  &lt;P&gt;&lt;A href="https://extreme.connectedcommunity.org/communities/community-home/digestviewer/view-question?ContributedContentKey=30a4c74b-4cc5-4ae9-a7d9-6c3117ae0154&amp;amp;CommunityKey=efaccd87-cd58-4b48-8fdc-6c1c39b7c3db&amp;amp;tab=digestviewer" target="_self" rel="noreferrer"&gt;https://community.extremenetworks.com/extremeswitching-vsp-ers-232923/tagging-vlan-on-lacp-on-vsp8600-7810429&lt;/A&gt;&lt;/P&gt;  &lt;P&gt;My concern is that if I have an active port and I want to add another VLAN to it I don’t have to disable LACP first just to add a VLAN?&lt;/P&gt;  &lt;P&gt;Still finding my feet with it a little, so more experience will let it sink in as to the reason why and why it might not matter and ways to configure it.&lt;/P&gt;  &lt;P&gt;When using LACP it did seem to throw all sorts of different errors from various different angles when configuring other elements,&amp;nbsp;that didn’t either make sense or something that typically isn’t usually a challenge, but getting their slowly &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;  &lt;P&gt;Thanks again.&lt;/P&gt;  &lt;P&gt;Cheers,&lt;/P&gt;  &lt;P&gt;Martin&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 04:21:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8746#M327</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T04:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Other ports are using the same key. Can not change port vlan membership.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8747#M328</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I faced the same issue today on my VSP7400&lt;BR /&gt;The solution for me was to configure the MLT as following :&lt;BR /&gt;"vlan mlt x yyy" where "x" is the Vlan ID and "yyy" is the MLT ID&lt;BR /&gt;as the mlt is hosting the main configuration, it looks that a few seconds later when you look for the vlan members&lt;BR /&gt;you can see that the vlans on the ports are automatically added&lt;BR /&gt;&lt;BR /&gt;I hope it will be any help</description>
      <pubDate>Fri, 11 Feb 2022 16:12:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/other-ports-are-using-the-same-key-can-not-change-port-vlan/m-p/8747#M328</guid>
      <dc:creator>MichaelD</dc:creator>
      <dc:date>2022-02-11T16:12:00Z</dc:date>
    </item>
  </channel>
</rss>

