Advertisement
Guest User

Untitled

a guest
May 13th, 2018
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. #
  2. # DHCP Server Configuration file.
  3. # see /usr/share/doc/dhcp*/dhcpd.conf.example
  4. # see dhcpd.conf(5) man page
  5. ddns-update-style interim;
  6. ignore client-updates;
  7. authoritative;
  8. allow booting;
  9. allow bootp;
  10. allow-unknown-clients;
  11. #internal subnet
  12. subnet 192.168.1.0 netmask 255.255.255.0 {
  13. range 192.168.1.1 192.168.1.50;
  14. option domain-name-servers 192.168.1.50;
  15. option domain-name "mydomain.com";
  16. option routers 192.168.1.50;
  17. default-lease-time 600;
  18. max-lease-time 7200;
  19.  
  20. #PXE SERVER IP
  21. next-server 192.168.1.50;
  22. filename "pxelinux.0";
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement