Advertisement
digimer

Untitled

Feb 8th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. [root@di-striker01 ~]# cat /etc/dhcp/dhcpd.conf
  2. ### Global options
  3. ddns-update-style none;
  4. option domain-name "alteeve.com";
  5. option domain-name-servers 8.8.8.8, 8.8.4.4;
  6. authoritative;
  7.  
  8. # refer to RFC4758 for possible arch option values
  9. #option arch code 93 = unsigned integer 16;
  10.  
  11. subnet 10.201.0.0 netmask 255.255.0.0 {
  12. range 10.201.14.10 10.201.14.250;
  13. option domain-name-servers 8.8.8.8, 8.8.4.4;
  14. option domain-name "alteeve.com";
  15. option routers 10.201.4.1;
  16.  
  17. class "pxeclients" {
  18. match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
  19. next-server 10.201.4.1;
  20. if option pxe-system-type = 00:07 {
  21. filename "BOOTX64.efi";
  22. } else {
  23. filename "pxelinux.0";
  24. }
  25. }
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement