<?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: Option 60/43 and ISC DHCP Server in ExtremeWireless (General)</title>
    <link>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33981#M1239</link>
    <description>Ciao Gareth,&lt;BR /&gt;
thank you for the reply, my mistake was to configure the class out of the subnet declaration.&lt;BR /&gt;
We have several models of AP in the same subnet, so I've removed the first entry in the class declaration and changed the match entry with:&lt;BR /&gt;
match if substring(option vendor-class-identifier,0,6) = "HiPath";&lt;BR /&gt;
So I can include in the class all models of AP. The configuration is as follows:&lt;BR /&gt;
&lt;BR /&gt;
# In the globlal scope&lt;BR /&gt;
option space IdentiFi;&lt;BR /&gt;
option IdentiFi.controllers code 1 = text;&lt;BR /&gt;
&lt;BR /&gt;
# Inside the subnet scope&lt;BR /&gt;
class "AP" {&lt;BR /&gt;
                vendor-option-space IdentiFi;&lt;BR /&gt;
                option IdentiFi.controllers "10.2.0.178,10.2.0.179";&lt;BR /&gt;
                match if substring(option vendor-class-identifier,0,6) = "HiPath";&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Thank a lot for your help!&lt;BR /&gt;
&lt;BR /&gt;
Claudio&lt;BR /&gt;
&lt;BR /&gt;</description>
    <pubDate>Tue, 24 Nov 2015 21:05:00 GMT</pubDate>
    <dc:creator>Claudio_Lori</dc:creator>
    <dc:date>2015-11-24T21:05:00Z</dc:date>
    <item>
      <title>Option 60/43 and ISC DHCP Server</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33978#M1236</link>
      <description>Hi all,&lt;BR /&gt;
I'd like to configure Isc Dhcp server (rel. 3.0.5, on a CentOS 5 Linux) to send option 43 with controller's ips to the APs by dhcp.&lt;BR /&gt;
My environment is with two C5210 in availability mode, with sw. rel. 09.21.04.0007.&lt;BR /&gt;
Does anyone know hot to configure correctly the dhcp server to send option 43 to aps?&lt;BR /&gt;
I tried several configurations, but the problem is that the ap ask for the option in a INFORM request, but the server does not send it in the response packet.&lt;BR /&gt;
I've already read and tried configuration suggested from Extreme, but the result is the same.&lt;BR /&gt;
Thanks for any help&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Nov 2015 16:44:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33978#M1236</guid>
      <dc:creator>Claudio_Lori</dc:creator>
      <dc:date>2015-11-24T16:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Option 60/43 and ISC DHCP Server</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33979#M1237</link>
      <description>Hi Cloudio,&lt;BR /&gt;
&lt;BR /&gt;
I use option 78 and never had any problems with it.&lt;BR /&gt;
&lt;BR /&gt;
So could you try this...&lt;BR /&gt;
&lt;A href="https://gtacknowledge.extremenetworks.com/articles/How_To/How-To-Configure-an-AP-to-Find-the-IdentiFi-Wireless-Controller-with-DHCP-Option-78-on-a-Linux-Server" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/How_To/How-To-Configure-an-AP-to-Find-the-IdentiF...&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://gtacknowledge.extremenetworks.com/articles/How_To/How-To-Configure-an-AP-to-Find-the-IdentiFi-Wireless-Controller" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/How_To/How-To-Configure-an-AP-to-Find-the-IdentiF...&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
-Ron</description>
      <pubDate>Tue, 24 Nov 2015 17:08:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33979#M1237</guid>
      <dc:creator>Ronald_Dvorak</dc:creator>
      <dc:date>2015-11-24T17:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Option 60/43 and ISC DHCP Server</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33980#M1238</link>
      <description>Ciao Claudio&lt;BR /&gt;
&lt;BR /&gt;
It's a while since I set this up, try the following as a base to build from:&lt;BR /&gt;
&lt;BR /&gt;
General settings:&lt;BR /&gt;
&lt;BR /&gt;
option space HAP;&lt;BR /&gt;
option HAP.HWC code 1 = text;&lt;BR /&gt;
&lt;BR /&gt;
In the scope (subnet)&lt;BR /&gt;
&lt;BR /&gt;
class "HAP" {&lt;BR /&gt;
  option vendor-class-identifier "HiPath AP3705";&lt;BR /&gt;
  option HAP.HWC "192.168.0.110";&lt;BR /&gt;
  match if option vendor-class-identifier = "HiPath AP3705";&lt;BR /&gt;
  vendor-option-space HAP;&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
The VCI's for each AP are defined in the getting started guide in our documentation.&lt;BR /&gt;
&lt;BR /&gt;
Option 78 is generally easier to configure: &lt;A href="https://gtacknowledge.extremenetworks.com/articles/How_To/How-To-Configure-an-AP-to-Find-the-IdentiFi-Wireless-Controller-with-DHCP-Option-78-on-a-Linux-Server" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/How_To/How-To-Configure-an-AP-to-Find-the-IdentiFi-Wireless-Controller-with-DHCP-Option-78-on-a-Linux-Server&lt;/A&gt; &lt;BR /&gt;
&lt;BR /&gt;
-Gareth&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Nov 2015 17:13:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33980#M1238</guid>
      <dc:creator>Gareth_Mitchell</dc:creator>
      <dc:date>2015-11-24T17:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Option 60/43 and ISC DHCP Server</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33981#M1239</link>
      <description>Ciao Gareth,&lt;BR /&gt;
thank you for the reply, my mistake was to configure the class out of the subnet declaration.&lt;BR /&gt;
We have several models of AP in the same subnet, so I've removed the first entry in the class declaration and changed the match entry with:&lt;BR /&gt;
match if substring(option vendor-class-identifier,0,6) = "HiPath";&lt;BR /&gt;
So I can include in the class all models of AP. The configuration is as follows:&lt;BR /&gt;
&lt;BR /&gt;
# In the globlal scope&lt;BR /&gt;
option space IdentiFi;&lt;BR /&gt;
option IdentiFi.controllers code 1 = text;&lt;BR /&gt;
&lt;BR /&gt;
# Inside the subnet scope&lt;BR /&gt;
class "AP" {&lt;BR /&gt;
                vendor-option-space IdentiFi;&lt;BR /&gt;
                option IdentiFi.controllers "10.2.0.178,10.2.0.179";&lt;BR /&gt;
                match if substring(option vendor-class-identifier,0,6) = "HiPath";&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Thank a lot for your help!&lt;BR /&gt;
&lt;BR /&gt;
Claudio&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Nov 2015 21:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/option-60-43-and-isc-dhcp-server/m-p/33981#M1239</guid>
      <dc:creator>Claudio_Lori</dc:creator>
      <dc:date>2015-11-24T21:05:00Z</dc:date>
    </item>
  </channel>
</rss>

