Guest User

Untitled

a guest
May 26th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. #--------------------------------------/etc/dhcp3/dhcpd.conf-------------------------------
  2.  
  3. default-lease-time 600;
  4. max-lease-time 7200;
  5. option subnet-mask 255.255.255.0;
  6. option broadcast-address 10.0.0.255;
  7. option domain-name "tim.domain";
  8.  
  9. next-server 10.0.0.1;
  10.  
  11. subnet 10.0.0.0 netmask 255.255.255.0 {
  12. range 10.0.0.2 10.0.0.254;
  13. }
  14.  
  15. if exists user-class and option user-class = "gPXE" {
  16. option root-path "iscsi:10.0.0.1::::iqn.2012-01.tim.domain:iscsiboot";
  17. } else {
  18. filename "undionly.kpxe";
  19. }
  20.  
  21. #---------------------------------------/etc/ietd.conf----------------------------------
  22.  
  23. Target iqn.2012-01.tim.domain:iscsiboot
  24. Lun 0 Path=/media/WindowsPartition/windows/hda.img,Type=fileio
Add Comment
Please, Sign In to add comment