Advertisement
devinteske

dhcpd.conf

Jun 8th, 2015
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. # dhcpd.conf
  2. #
  3. # Sample configuration file for ISC dhcpd
  4. #
  5.  
  6. # option definitions common to all supported networks...
  7. option domain-name "shxd.cx";
  8. option domain-name-servers 209.244.0.3, 74.82.42.42, 8.8.8.8;
  9.  
  10. default-lease-time 21600;
  11. max-lease-time 43200;
  12.  
  13. # Use this to enble / disable dynamic dns updates globally.
  14. ddns-update-style interim;
  15.  
  16. # If this DHCP server is the official DHCP server for the local
  17. # network, the authoritative directive should be uncommented.
  18. #authoritative;
  19.  
  20. # Use this to send dhcp log messages to a different log file (you also
  21. # have to hack syslog.conf to complete the redirection).
  22. log-facility local7;
  23.  
  24. subnet 192.168.1.0 netmask 255.255.255.0 {
  25. option routers 192.168.1.1;
  26. option subnet-mask 255.255.255.0;
  27. option domain-name "shxd.cx";
  28. option domain-name-servers 192.168.1.1;
  29. option time-offset -18000; # Pacific Standard Time
  30. range dynamic-bootp 192.168.1.100 192.168.1.109;
  31. next-server 192.168.1.1;
  32. ignore client-updates;
  33. filename "lpxelinux.0";
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement