Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 26th, 2012  |  syntax: None  |  size: 0.76 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. the only line non-stock in /etc/dhcp/dhcpd.conf is:
  2.  
  3.  
  4. include "/etc/ltsp/dhcpd.conf";
  5.  
  6.  
  7. Here is output of more /etc/ltsp/dhcpd.conf:
  8.  
  9.  
  10. #
  11. # Default LTSP dhcpd.conf config file.
  12. #
  13.  
  14. authoritative;
  15.  
  16. subnet 192.168.1.0 netmask 255.255.255.0 {
  17.     range 192.168.1.20 192.168.1.250;
  18.     option domain-name "zero-backup-ltsp";
  19.     option domain-name-servers 192.168.1.1;
  20.     option broadcast-address 192.168.1.255;
  21.     option routers 192.168.1.1;
  22.     next-server 192.168.1.1;
  23. #    get-lease-hostnames true;
  24.     option subnet-mask 255.255.255.0;
  25.     option root-path "/opt/ltsp/i386";
  26.     if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
  27.         filename "/ltsp/i386/pxelinux.0";
  28.     } else {
  29.         filename "/ltsp/i386/nbi.img";
  30.     }
  31. }