Advertisement
MertcanGokgoz

configuration file for ISC dhcpd

Dec 20th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 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 "home.local";
  8. option domain-name-servers 54.174.40.213, 52.3.100.184;
  9.  
  10. default-lease-time 14400;
  11. max-lease-time 24400;
  12.  
  13. # The ddns-updates-style parameter controls whether or not the server will
  14. # attempt to do a DNS update when a lease is confirmed. We default to the
  15. # behavior of the version 2 packages ('none', since DHCP v2 didn't
  16. # have support for DDNS.)
  17. ddns-update-style none;
  18.  
  19. # If this DHCP server is the official DHCP server for the local
  20. # network, the authoritative directive should be uncommented.
  21. authoritative;
  22.  
  23. # Use this to send dhcp log messages to a different log file (you also
  24. # have to hack syslog.conf to complete the redirection).
  25. log-facility local7;
  26.  
  27. # No service will be given on this subnet, but declaring it helps the
  28. # DHCP server to understand the network topology.
  29.  
  30. subnet 192.168.0.0 netmask 255.255.255.0 {
  31. option routers 192.168.0.1;
  32. option subnet-mask 255.255.255.0;
  33. range dynamic-bootp 192.168.0.110 192.168.0.254;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement