Guest User

Untitled

a guest
Jun 26th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment