<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 10/9/2014 1:14 PM, CLOSE Dave wrote:<br>
    </div>
    <blockquote cite="mid:5436C27E.4020409@us.thalesgroup.com"
      type="cite">
      <pre wrap="">Bill Shirley wrote:

</pre>
      <blockquote type="cite">
        <pre wrap="">Are you able to set up a separate subnet for kickstart boots? If so,
I have an idea that may work for you.
</pre>
      </blockquote>
      <pre wrap="">
No, I don't think I can do that. The subnets are allocated and 
controlled by a different group. In any case, how would PXE know to use 
the different subnet?
</pre>
    </blockquote>
    <br>
    Something like:<br>
    <br>
    <font color="#993300"><tt>class "kickstart" {<br>
                match if substring(option vendor-class-identifier, 0, 9)
        = "</tt><tt><tt>kickstart</tt>";<br>
      </tt><tt>        option domain-name      "kickstart.example.com";<br>
      </tt><tt><tt>        option ddns-domainname 
          "kickstart.example.com";<br>
        </tt>}</tt><br>
      host pxe-1                {hardware ethernet 00:19:d1:72:d1:d7;  
      fixed-address 10.0.2.20;}<br>
      <br>
      shared-network example-com {<br>
          subnet 10.0.1.0 netmask 255.255.255.0 {<br>
              option domain-name-servers    10.1.0.1;<br>
               pool {<br>
                       allow members of "kickstart";<br>
                       deny dynamic bootp clients;<br>
                       range 10.0.1.100         10.0.1.253;<br>
                }<br>
      .<br>
      .<br>
          }<br>
          subnet 10.0.2.0 netmask 255.255.255.0 {<br>
              option domain-name-servers    10.2.0.1;<br>
               pool {<br>
                       deny dynamic bootp clients;<br>
                       range 10.0.2.100         10.0.2.253;<br>
               }<br>
      .<br>
      .<br>
          }<br>
      }</font><br>
    <br>
    I don't have a way to test it, but I think it would work.  If there
    is a class match, DHCP should use the first subnet else the host
    fixed address.<br>
    <br>
    Bill<br>
    <br>
  </body>
</html>