summaryrefslogtreecommitdiff
path: root/dhcp3/dhcpd.hosts.grub
diff options
context:
space:
mode:
Diffstat (limited to 'dhcp3/dhcpd.hosts.grub')
-rw-r--r--dhcp3/dhcpd.hosts.grub17
1 files changed, 17 insertions, 0 deletions
diff --git a/dhcp3/dhcpd.hosts.grub b/dhcp3/dhcpd.hosts.grub
new file mode 100644
index 0000000..8f2d461
--- /dev/null
+++ b/dhcp3/dhcpd.hosts.grub
@@ -0,0 +1,17 @@
+group {
+ server-name "grub";
+ next-server 192.168.102.252; # IP of TFTP server (only needed if separate from DHCP server)
+# option tftp-server-name "192.168.102.252"; # same as (or similar to) next-server above (not tested)
+ option dhcp-max-message-size 2048;
+ option grub-configfile "(nd)/grub-menu.lst";
+
+ # Via-rhine NIC
+ group {
+ if substring (option vendor-class-identifier, 0, 9) = "PXEClient" {
+ filename "pxegrub-via-rhine";
+ } else {
+ filename "nbgrub-via-rhine";
+ }
+# host kenja { hardware ethernet 00:40:63:c0:84:a5; fixed-address kenja; option fai-action "install"; } # Vega (Spiff): Xenux thin client
+ }
+}