HP xw6400 Network Boot DHCP failure - no client DHCPREQUEST after server DHCPOFFER

Masao Kitamura masaok at gmail.com
Mon Sep 12 23:34:10 UTC 2011


> # PXE boots for jumpstarting x86 boxes
> class "PXE" {
>  match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
>  next-server drill.example.com.au;
>  filename "pxegrub.I86PC.Solaris_10-1";
>  # 10 minutes should be long enough for PXE
>  max-lease-time 600;
>
>  # append option 28 (1c in hex) to the requested list
>  option dhcp-parameter-request-list =
>    concat ( option dhcp-parameter-request-list, 1c );
> }

Glenn, this worked perfectly!

Here is my working config:

class "PXE" {
 match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
 next-server my.local.tftpd.server.org;
 filename "pxelinux.0";
 max-lease-time 600;
 option dhcp-parameter-request-list = concat ( option
dhcp-parameter-request-list, 1c );
}

The "next-server" and "filename" variables were absolutely necessary.

Thanks again,

Masao



More information about the dhcp-users mailing list