<?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: UPM or mac address based vlan switching? in ExtremeCloud IQ- Site Engine Management Center</title>
    <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29369#M2880</link>
    <description>This is great, thank you Matthew! Going to give it a go this weekend.</description>
    <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2017-04-06T05:19:00Z</dc:date>
    <item>
      <title>UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29363#M2874</link>
      <description>I'm looking for suggestions on our design. &lt;BR /&gt;
&lt;BR /&gt;
We currently have a mixture of extreme products (8806, X670, X450, X440) with multiple VLANS. &lt;BR /&gt;
&lt;BR /&gt;
Right now I've been assigning ports to vlans manually which is turning into a bit of a pain. I was wondering what the best approach would be to implement a policy whereby machines/ports get their VLAN assignment based on the devices mac address plugging into said port. &lt;BR /&gt;
&lt;BR /&gt;
EG: &lt;BR /&gt;
All mac's that begin with XX:XX go into VLAN 1&lt;BR /&gt;
All mac's that begin with XY:XY go into VLAN 2&lt;BR /&gt;
&lt;BR /&gt;
Would UPM or Mac Based Netlogin be the better option ?</description>
      <pubDate>Thu, 06 Apr 2017 00:29:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29363#M2874</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-04-06T00:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29364#M2875</link>
      <description>You wouldn't need to use UPM for VLAN assignment, but it could be used for other things. The easiest approach would be to use local MAC authentication with a mask filtering certain OUIs and creating local users in the local user database with VLAN VSAs (and UPM scripting if needed) locally on the switch.&lt;BR /&gt;
&lt;BR /&gt;
I'll follow with an example shortly.&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29364#M2875</guid>
      <dc:creator>Matthew_Helm1</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29365#M2876</link>
      <description>Sounds good to me, keen to see an example if you have time. Appreciate it.</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29365#M2876</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29366#M2877</link>
      <description>bump </description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29366#M2877</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29367#M2878</link>
      <description>Sorry for the tardiness. So here is an example configuration:&lt;BR /&gt;
&lt;BR /&gt;
# delete the default vlan off of ports 1-3&lt;BR /&gt;
config vlan default delete port 1-3&lt;BR /&gt;
# create the netlogin VLAN&lt;BR /&gt;
create vlan "nl"&lt;BR /&gt;
# create the VLAN used by a specific device type in this example&lt;BR /&gt;
create vlan "ouiVLAN"&lt;BR /&gt;
&lt;BR /&gt;
# config the netlogin vlan&lt;BR /&gt;
configure netlogin vlan nl&lt;BR /&gt;
# enable netlogin mac generally&lt;BR /&gt;
enable netlogin mac&lt;BR /&gt;
# enable netlogin for mac authentication on ports 1-3&lt;BR /&gt;
enable netlogin ports 1-3 mac &lt;BR /&gt;
&lt;BR /&gt;
# create a mac-list filter that will pass the first 24bits + 24 0 bits and "ouipass"&lt;BR /&gt;
# as the credentials for devices that have the matching OUI&lt;BR /&gt;
# (a VOIP phone, for instance).&lt;BR /&gt;
configure netlogin add mac-list 08:00:27:00:00:00 24 ouipass&lt;BR /&gt;
&lt;BR /&gt;
# create a mac-list filter set which will match all other devices and use 48 bits of&lt;BR /&gt;
# 0s and "otherpass" as the credentials for devices not having&lt;BR /&gt;
# the desired OUI.&lt;BR /&gt;
configure netlogin add mac-list 00:00:00:00:00:00 1 otherpass&lt;BR /&gt;
&lt;BR /&gt;
#create the accounts with passwords with the appropriate VLAN-VSA assignment&lt;BR /&gt;
create netlogin local-user "000000000000" otherpass vlan-vsa untagged Default&lt;BR /&gt;
create netlogin local-user "080027000000" ouipass vlan-vsa ouiVLAN&lt;BR /&gt;
&lt;BR /&gt;
The above configuration will have any device of the specific manufacture that you want put into the "ouiVLAN".&lt;BR /&gt;
&lt;BR /&gt;
All others end up in the "Default" VLAN.&lt;BR /&gt;
&lt;BR /&gt;
Let me know if this helps.</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29367#M2878</guid>
      <dc:creator>Matthew_Helm1</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29368#M2879</link>
      <description>Also &lt;A href="https://www.dropbox.com/s/1smw7a0ylco4ap2/NetloginRadiusLocalAuth.pdf?dl=0" target="_blank" rel="nofollow noreferrer noopener"&gt;here&lt;/A&gt; is the latest version of a quick doc I put together on this sort of thing including using freeradius</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29368#M2879</guid>
      <dc:creator>Matthew_Helm1</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29369#M2880</link>
      <description>This is great, thank you Matthew! Going to give it a go this weekend.</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29369#M2880</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29370#M2881</link>
      <description>I've tested this configuration and seems to be what i need.&lt;BR /&gt;
&lt;BR /&gt;
Is it possible to pass "2 untagged vlan" in the same port using this? (like dataVlan and voiceVlan)?&lt;BR /&gt;
&lt;BR /&gt;
Or at least "1 untagged + 1 tagged" ?</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29370#M2881</guid>
      <dc:creator>gbs</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29371#M2882</link>
      <description>Are two devices connecting to the same port (e.g. a PC connecting to a VOIP phone which is connected to the switch)?</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29371#M2882</guid>
      <dc:creator>Matthew_Helm1</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: UPM or mac address based vlan switching?</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29372#M2883</link>
      <description>Yes, they are.&lt;BR /&gt;
&lt;BR /&gt;
I have those scenarios:&lt;BR /&gt;
Extreme Switch -&amp;gt; Computer&lt;BR /&gt;
Extreme Switch -&amp;gt; Avaya Phone&lt;BR /&gt;
Extreme Switch -&amp;gt; Not managed Switch -&amp;gt; Computer/Avaya (or another brand...) Phone&lt;BR /&gt;
Extreme Switch -&amp;gt; Avaya Phone -&amp;gt; Computer&lt;BR /&gt;
Extreme Switch -&amp;gt; Avaya Phone -&amp;gt; Another brand (that cant do vlan) Phone</description>
      <pubDate>Thu, 06 Apr 2017 05:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/upm-or-mac-address-based-vlan-switching/m-p/29372#M2883</guid>
      <dc:creator>gbs</dc:creator>
      <dc:date>2017-04-06T05:19:00Z</dc:date>
    </item>
  </channel>
</rss>

