summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.hosts.grub
blob: 8f2d4617e102831261747fa291a1f004b8181adc (plain)
  1. group {
  2. server-name "grub";
  3. next-server 192.168.102.252; # IP of TFTP server (only needed if separate from DHCP server)
  4. # option tftp-server-name "192.168.102.252"; # same as (or similar to) next-server above (not tested)
  5. option dhcp-max-message-size 2048;
  6. option grub-configfile "(nd)/grub-menu.lst";
  7. # Via-rhine NIC
  8. group {
  9. if substring (option vendor-class-identifier, 0, 9) = "PXEClient" {
  10. filename "pxegrub-via-rhine";
  11. } else {
  12. filename "nbgrub-via-rhine";
  13. }
  14. # host kenja { hardware ethernet 00:40:63:c0:84:a5; fixed-address kenja; option fai-action "install"; } # Vega (Spiff): Xenux thin client
  15. }
  16. }