Advertisement
azaroma

dhcp.conf

Dec 12th, 2014
1,865
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. ddns-update-style none;
  2. option domain-name "home.local";
  3. option domain-name-servers 10.10.1.10;
  4. default-lease-time 86400;
  5. max-lease-time 604800;
  6. option time-offset -18000;
  7. authoritative;
  8. log-facility local7;
  9. allow booting;
  10. allow bootp;
  11. subnet 10.10.1.0 netmask 255.255.255.0 {
  12. get-lease-hostnames on;
  13. use-host-decl-names on;
  14. range 10.10.1.100 10.10.1.200;
  15. option routers 10.10.1.1;
  16. option subnet-mask 255.255.255.0;
  17. option broadcast-address 10.10.1.255;
  18. filename "pxelinux.0";
  19. next-server 10.10.1.10;
  20. }
  21. host shuttle {
  22. hardware ethernet 00:30:1b:ba:89:31;
  23. fixed-address 10.10.1.20;
  24. option routers 10.10.1.1;
  25. option subnet-mask 255.255.255.0;
  26. option broadcast-address 10.10.1.255;
  27. option host-name "shuttle";
  28. filename "pxelinux.0";
  29. option root-path "/home/shuttle";
  30. next-server 10.10.1.10;
  31. }
  32. host nfsroot {
  33. hardware ethernet 08:00:27:bb:74:dd;
  34. fixed-address 10.10.1.30;
  35. option routers 10.10.1.1;
  36. option subnet-mask 255.255.255.0;
  37. option broadcast-address 10.10.1.255;
  38. option host-name "nfsroot";
  39. filename "pxelinux.0";
  40. option root-path "/home/nfsroot";
  41. next-server 10.10.1.10;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement