<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Em 12-06-2012 21:19, Glenn Satchell escreveu:
    <blockquote
      cite="mid:9e2e9b5ae7abdabaeaf57c60605413eb.squirrel@mail.uniq.com.au"
      type="cite">
      <pre wrap="">Create a class for each pool, and use subclasses to add members based on
the hardware ethernet address. There is an example in the dhcpd.conf man
page.

class "class100" {
    match pick-first-value (option dhcp-client-identifier, hardware);
}
class "class200" {
    match pick-first-value (option dhcp-client-identifier, hardware);
}
subclass "class100" 1:00:00:00:00:00:01;
subclass "class100" 1:00:00:00:00:00:02;
subclass "class200" 1:00:00:00:00:00:03;
subclass "class200" 1:00:00:00:00:00:04;
</pre>
    </blockquote>
    <br>
    Many thanks!<br>
    <br>
    This looks exactly what I need. Only one more question: by defining
    a hw address on a subclass makes the host known (deny
    unknown-clients;) or should I also declare a host definition? Or
    since I have an "allow members of" on the pool definition I may
    allow unknown clientes (which in practice will be 'known' by the
    subclass)?<br>
    <br>
    Best regards.<br>
    <br>
    <div class="moz-signature">-- <br>
      <style type="text/css">
        #a1AssinaturaEmail { font-family: Tahoma, Verdana, Arial; font-size: 10px; }
        #a1AssinaturaEmail * { font-family: Tahoma, Verdana, Arial; font-size: 10px; }
        #a1AssinaturaEmail a { text-decoration: none; color: #FF9900; }
</style>
      <div id="a1AssinaturaEmail"> <span style="font-size: 12px;"><b>Marcio
            Merlone</b></span><br>
      </div>
    </div>
  </body>
</html>