<div dir="ltr"><div><br></div>Not a newby but definitely beginner in terms of experience here.<div><br></div><div>In our dhcpd.conf file we have a class set up to identify IP phones and we assign the server they need to connect to:</div><div><br></div><div>class "i2004-clients" {<br>        match if substring (option vendor-class-identifier, 0, 14) =<br>        "Nortel-i2004-A";<br>        option nortel-specific-info =<br>        "Nortel-i2004-A,<a href="http://10.1.0.10:4100">10.1.0.10:4100</a>,1,15;<a href="http://10.1.0.10:4100">10.1.0.10:4100</a>,1,15.";<br>        option vendor-class-identifier "Nortel-i2004-A";<br>}<br><div><div><br></div><div>In a subnet, I have the following, which works perfectly fine.</div><div><br></div><div>        subnet 10.10.0.0 netmask 255.255.0.0 {<br>          authoritative;<br>          option routers 10.10.0.1;<br>          one-lease-per-client true;<br>          pool {<br>            allow members of "i2004-clients";<br>            range 10.10.250.50 10.10.250.249;<br>            max-lease-time 43200;<br>            default-lease-time 43200;<br>          }<br></div><div><br></div><div>There's other pools as well, and we have several other vlans like the above and all IP phones get the default configuration.</div><div><br></div><div>But I need to assign some phones to a different controller - that is I need to assign those that land in this specific vlan with the following:</div><div>          option nortel-specific-info =<br></div><div>          "Nortel-i2004-A,<a href="http://10.2.0.10:4100">10.2.0.10:4100</a>,1,15;<a href="http://10.2.0.10:4100">10.2.0.10:4100</a>,1,15.";<br></div><div><br></div><div>I tried creating a different class, but because hardware is the same, they fall under the first defined one. I tried adding the above inside the pool section but they still get the globally defined one. Am I missing something? Or would I need to assign the class or the above lines to every vlan and take it out of the global config?</div><div><br></div><div>Thanks in advance - Ricardo.</div><div><br></div><div><br></div>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><span style="font-family:'times new roman','new york',times,serif;font-size:16px;color:rgb(204,204,204)">°(((</span><span style="color:rgb(0,0,0);font-family:'times new roman','new york',times,serif;font-size:16px;text-decoration:underline">=</span><span style="font-family:'times new roman','new york',times,serif;font-size:16px;color:rgb(204,204,204)">((</span><span style="color:rgb(0,0,0);font-family:'times new roman','new york',times,serif;font-size:16px;text-decoration:underline">===°°°</span><span style="font-family:'times new roman','new york',times,serif;font-size:16px;color:rgb(204,204,204)">(((</span><span style="font-family:'times new roman','new york',times,serif;font-size:16px;color:rgb(255,0,0);text-decoration:underline">================================================</span><br style="color:rgb(0,0,0);font-family:'times new roman','new york',times,serif;font-size:16px"></div></div></div></div></div>