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.

13 lines
229 B

  1. # dhcpd.conf
  2. authoritative;
  3. default-lease-time 3600;
  4. max-lease-time 86400;
  5. option domain-name-servers 192.168.1.1;
  6. subnet 192.168.1.0 netmask 255.255.255.0 {
  7. range 192.168.1.10 192.168.1.50;
  8. option routers 192.168.1.1;
  9. }