You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dhcpd.conf.default 410B

12345678910111213141516171819202122
  1. ddns-update-style none;
  2. option domain-name "example.com";
  3. option domain-name-servers 192.168.1.2;
  4. default-lease-time 600;
  5. max-lease-time 7200;
  6. use-host-decl-names on;
  7. authoritative;
  8. log-facility local7;
  9. subnet 192.168.1.0 netmask 255.255.255.0{
  10. range 192.168.1.30 192.168.1.250;
  11. option subnet-mask 255.255.255.0;
  12. option broadcast-address 192.168.1.255;
  13. option routers 192.168.1.1;
  14. %%HOSTS%%
  15. }