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 890B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ddns-update-style none;
  2. option classless-routes code 121 = array of unsigned integer 8;
  3. option classless-routes-win code 249 = array of unsigned integer 8;
  4. default-lease-time 600;
  5. max-lease-time 7200;
  6. use-host-decl-names on;
  7. authoritative;
  8. log-facility local7;
  9. subnet 10.15.100.0 netmask 255.255.255.0 {
  10. range 10.15.100.50 10.15.100.250;
  11. option subnet-mask 255.255.255.0;
  12. option broadcast-address 10.15.100.255;
  13. option routers 10.15.100.1;
  14. option domain-name "site.rthoni.com";
  15. option domain-name-servers 10.15.100.1;
  16. #option classless-routes 24, 10,15,42, 10.15.12,2;
  17. #option classless-routes-win 24, 10,15,42, 10.15.12,2;
  18. next-server 10.15.100.1;
  19. if exists user-class and ( option user-class = "iPXE-rthoni" ) {
  20. filename "http://netboot/boot.ipxe";
  21. }
  22. else {
  23. filename "ipxe-rthoni.kpxe";
  24. }
  25. # option root-path "10.15.100.1:/pxeroot/ubuntu";
  26. }