Advertisement
Guest User

/etc/dhcp/dhcpd.conf

a guest
Apr 24th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. /etc/dhcp/dhcpd.conf
  2. authoritative;
  3.  
  4. subnet 192.168.0.0 netmask 255.255.255.0 {
  5. range 192.168.0.10 192.168.0.20;
  6. option domain-name "example.com";
  7. option domain-name-servers 192.168.0.1;
  8. option broadcast-address 192.168.0.255;
  9. option routers 192.168.0.1;
  10. next-server 192.168.0.1;
  11. # get-lease-hostnames true;
  12. option subnet-mask 255.255.255.0;
  13. option root-path "/opt/ltsp/i386";
  14. if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
  15. filename "/ltsp/i386/pxelinux.0";
  16. } else {
  17. filename "/ltsp/i386/nbi.img";
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement