dhcpd.conf 676 B

123456789101112131415161718192021222324252627282930313233
  1. option domain-name "home.arpa";
  2. option domain-search "home.arpa";
  3. option domain-name-servers 192.168.0.42;
  4. option subnet-mask 255.255.255.0;
  5. option routers 192.168.0.1;
  6. default-lease-time 600;
  7. max-lease-time 7200;
  8. authoritative;
  9. log-facility local7;
  10. subnet 192.168.0.0 netmask 255.255.255.0 {
  11. range 192.168.0.100 192.168.0.200;
  12. }
  13. host mycroft_eth {
  14. hardware ethernet 18:67:b0:2d:b5:59;
  15. server-name "mycroft";
  16. fixed-address 192.168.0.43;
  17. }
  18. host mycroft_wlo {
  19. hardware ethernet 24:fd:52:5f:fd:35;
  20. server-name "mycroft";
  21. fixed-address 192.168.0.43;
  22. }
  23. host marvin {
  24. hardware ethernet 80:58:f8:55:64:f2;
  25. server-name "marvin";
  26. fixed-address 192.168.0.44;
  27. }