<?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: NAC is not registering switch/port change on EXOS devices in ExtremeCloud IQ- Site Engine Management Center</title>
    <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16961#M417</link>
    <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all the help! I was able to dig into this some more with some extra eyes and was able to find a simple solution.&lt;BR /&gt;
&lt;BR /&gt;
We determined that the x460G2s was not sending any authentication requests for the netlogin side, but was sending RADIUS requests for management-access directly to our RADIUS servers (which is fine). Looking at the configuration on the test switches, we saw that the netlogin wasn't fully enabled. They were missing 'enable netlogin dot1x mac'. Not sure why this happen, it was in our config template....anyways everything is working great with the NAC now.&lt;BR /&gt;
&lt;BR /&gt;
@Rainer Adam: That solution seems overly complicated to get a Extreme brand switch, to work with their NAC solution.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Jay&lt;BR /&gt;
&lt;BR /&gt;</description>
    <pubDate>Thu, 12 May 2016 23:30:00 GMT</pubDate>
    <dc:creator>Jason_Graves</dc:creator>
    <dc:date>2016-05-12T23:30:00Z</dc:date>
    <item>
      <title>NAC is not registering switch/port change on EXOS devices</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16958#M414</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
We just got ourselves some Extreme NAC appliances. We're just in the testing phase now and I'm having some issues with the x460G2 switches. In my testing, I'm using a C5 and two x460G2s. When I connect my laptop to the C5, Oneview see it right away, with the correct switch IP/port. It also works when I move to another port on the C5. However when I move the laptop to one of the x460G2,  it registers the IP address change in NAC Manager/Oneview, but it keeps the C5 IP address and port.&lt;BR /&gt;
&lt;BR /&gt;
Is there something I'm missing in the NAC manager or a setting on the x460G2 themselves?&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all the help,&lt;BR /&gt;
Jay &lt;BR /&gt;</description>
      <pubDate>Wed, 11 May 2016 19:11:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16958#M414</guid>
      <dc:creator>Jason_Graves</dc:creator>
      <dc:date>2016-05-11T19:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: NAC is not registering switch/port change on EXOS devices</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16959#M415</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
Port Information is determined from RADIUS Requests to the NAC (from the switch) and SNMP queries from NAC to the switch, in some cases.&lt;BR /&gt;
&lt;BR /&gt;
You can use this article to troubleshoot then open a case with GTAC if necessary.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://gtacknowledge.extremenetworks.com/articles/How_To/NAC-Troubleshooting-Tips-Debug-Methodology-for-Switch-Port-Information/" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/How_To/NAC-Troubleshooting-Tips-Debug-Methodology...&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Scott Keene</description>
      <pubDate>Wed, 11 May 2016 20:08:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16959#M415</guid>
      <dc:creator>Keene__Scott</dc:creator>
      <dc:date>2016-05-11T20:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: NAC is not registering switch/port change on EXOS devices</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16960#M416</link>
      <description>We had the same issue. You have to configure the Extreme Switch that he sends the authentication requests. Therefor you have to configure the Radius server settings manually AND you have to configure:&lt;BR /&gt;
&lt;BR /&gt;
create upm profile ENT_USERif (!$match($EVENT.NAME,USER-AUTHENTICATED)) then&lt;BR /&gt;
create log entry Config_ACL&lt;BR /&gt;
create access-list $(EVENT.USER_MAC)_ENT_USER "ethernet-sourceaddress&lt;BR /&gt;
($EVENT.USER_MAC); protocol icmp; icmp-type echo-request;"&lt;BR /&gt;
"deny"&lt;BR /&gt;
configure access-list add $(EVENT.USER_MAC)_ENT_USER first port&lt;BR /&gt;
$EVENT.USER_PORT&lt;BR /&gt;
endif&lt;BR /&gt;
if (!$match($EVENT.NAME,USER-UNAUTHENTICATED)) then&lt;BR /&gt;
configure access-list delete $(EVENT.USER_MAC)_ENT_USER port&lt;BR /&gt;
$EVENT.USER_PORT&lt;BR /&gt;
delete access-list $(EVENT.USER_MAC)_ENT_USER&lt;BR /&gt;
endif&lt;BR /&gt;
&lt;BR /&gt;
.&lt;BR /&gt;
configure upm event user-authenticate profile ENT_USER ports 2-48&lt;BR /&gt;
configure upm event user-unauthenticated profile ENT_USER ports 2-48&lt;BR /&gt;
&lt;BR /&gt;
#&lt;BR /&gt;
&lt;BR /&gt;
Without that, the ExtremeSwitch does NOT send and authentication requests to the radius servers (NAC Gateways).&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 12 May 2016 12:33:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16960#M416</guid>
      <dc:creator>Rainer_Adam</dc:creator>
      <dc:date>2016-05-12T12:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: NAC is not registering switch/port change on EXOS devices</title>
      <link>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16961#M417</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all the help! I was able to dig into this some more with some extra eyes and was able to find a simple solution.&lt;BR /&gt;
&lt;BR /&gt;
We determined that the x460G2s was not sending any authentication requests for the netlogin side, but was sending RADIUS requests for management-access directly to our RADIUS servers (which is fine). Looking at the configuration on the test switches, we saw that the netlogin wasn't fully enabled. They were missing 'enable netlogin dot1x mac'. Not sure why this happen, it was in our config template....anyways everything is working great with the NAC now.&lt;BR /&gt;
&lt;BR /&gt;
@Rainer Adam: That solution seems overly complicated to get a Extreme brand switch, to work with their NAC solution.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Jay&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 12 May 2016 23:30:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremecloud-iq-site-engine/nac-is-not-registering-switch-port-change-on-exos-devices/m-p/16961#M417</guid>
      <dc:creator>Jason_Graves</dc:creator>
      <dc:date>2016-05-12T23:30:00Z</dc:date>
    </item>
  </channel>
</rss>

