dhcpd.conf 565 B

12345678910111213141516171819202122
  1. |# Begin /etc/dhcp/dhcpd.conf
  2. #
  3. # Example dhcpd.conf(5)
  4. # Use this to enble / disable dynamic dns updates globally.
  5. ddns-update-style none;
  6. # option definitions common to all supported networks...
  7. option domain-name "example.org";
  8. option domain-name-servers ns1.example.org, ns2.example.org;
  9. default-lease-time 600;
  10. max-lease-time 7200;
  11. # This is a very basic subnet declaration.
  12. subnet 10.254.239.0 netmask 255.255.255.224 {
  13. range 10.254.239.10 10.254.239.20;
  14. option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org;
  15. }
  16. # End /etc/dhcp/dhcpd.conf|