Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. # Don't function as a DNS server:
  2. port=0
  3.  
  4. # Log lots of extra information about DHCP transactions.
  5. log-dhcp
  6.  
  7. # Set the root directory for files available via FTP.
  8. tftp-root=/tftpboot
  9.  
  10. # The boot filename, Server name, Server Ip Address
  11. dhcp-boot=undionly.kpxe,,<FOG_SERVER_IP>
  12.  
  13. # Disable re-use of the DHCP servername and filename fields as extra
  14. # option space. That's to avoid confusing some old or broken DHCP clients.
  15. dhcp-no-override
  16.  
  17. # inspect the vendor class string and match the text to set the tag
  18. dhcp-vendorclass=BIOS,PXEClient:Arch:00000
  19. dhcp-vendorclass=UEFI32,PXEClient:Arch:00006
  20. dhcp-vendorclass=UEFI,PXEClient:Arch:00007
  21. dhcp-vendorclass=UEFI64,PXEClient:Arch:00009
  22.  
  23. # Set the boot file name based on the matching tag from the vendor class (above)
  24. dhcp-boot=net:UEFI32,i386-efi/ipxe.efi,,<FOG_SERVER_IP>
  25. dhcp-boot=net:UEFI,ipxe.efi,,<FOG_SERVER_IP>
  26. dhcp-boot=net:UEFI64,ipxe.efi,,<FOG_SERVER_IP>
  27.  
  28. # PXE menu. The first part is the text displayed to the user. The second is the timeout, in seconds.
  29. pxe-prompt="Booting FOG Client", 1
  30.  
  31. # The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
  32. # Intel_Lean_Client, IA32_EFI, BC_EFI, Xscale_EFI and X86-64_EFI
  33. # This option is first and will be the default if there is no input from the user.
  34. pxe-service=X86PC, "Boot to FOG", undionly.kpxe
  35. pxe-service=X86-64_EFI, "Boot to FOG UEFI", ipxe.efi
  36. pxe-service=BC_EFI, "Boot to FOG UEFI PXE-BC", ipxe.efi
  37.  
  38. dhcp-range=<FOG_SERVER_IP>,proxy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement