HP BL10e Setting up a Linux PXE server and integrating clients - Page 18

option subnet-mask 255.255.0.0, range dynamic-bootp 172.48.0.128 172.48.0.255

Page 18 highlights

option subnet-mask 255.255.0.0; option nis-domain "domain.org"; option domain-name "domain.org"; option domain-name-servers 172.48.0.1,10.10.20.242; # PXE-specific configuration directives global section if substring (option vendor-class-identifier, 0, 9) = "PXEClient" { filename "pxelinux.0"; next-server 172.48.0.1; } option time-offset -21600; # Central Standard Time option ntp-servers 172.48.0.1; # option netbios-name-servers 172.48.1.1; # --- Selects point-to-point node (default is hybrid). # --- Don't change this unless you understand Netbios very well # option netbios-node-type 2; range dynamic-bootp 172.48.0.128 172.48.0.255; default-lease-time 21600; max-lease-time 43200; host 00080246e75d { hardware ethernet 00:08:02:46:e7:5d; fixed-address 172.48.1.253; # PXE-specific configuration directives client specific section next-server 172.48.0.1; filename "pxelinux.0"; } host 00508bea8000 { hardware ethernet 00:50:8b:ea:80:00; fixed-address 172.48.1.254; # etherboot-specific configuration directives next-server 172.48.0.1; filename "etherboot.img"; } } 18

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

option subnet-mask 255.255.0.0;
option nis-domain "domain.org";
option domain-name "domain.org";
option domain-name-servers 172.48.0.1,10.10.20.242;
# PXE-specific configuration directives global section
if substring (option vendor-class-identifier, 0, 9) = "PXEClient"
{
filename "pxelinux.0";
next-server 172.48.0.1;
}
option time-offset -21600; # Central Standard Time
option ntp-servers 172.48.0.1;
# option netbios-name-servers 172.48.1.1;
# --- Selects point-to-point node (default is hybrid).
# --- Don't change this unless you understand Netbios very well
# option netbios-node-type 2;
range dynamic-bootp 172.48.0.128 172.48.0.255;
default-lease-time 21600;
max-lease-time 43200;
host 00080246e75d {
hardware ethernet 00:08:02:46:e7:5d;
fixed-address 172.48.1.253;
# PXE-specific configuration directives client specific section
next-server 172.48.0.1;
filename "pxelinux.0";
}
host 00508bea8000 {
hardware ethernet 00:50:8b:ea:80:00;
fixed-address 172.48.1.254;
# etherboot-specific configuration directives
next-server 172.48.0.1;
filename "etherboot.img";
}
}
18