2

Captured boot up process

I'm trying to make a diskless PC client and install the operating system on a SAN Storage. As of now I'm using Windows Server 2012 R2 and it will serve as my DHCP/WDS and SAN server.

I found a video from yourtube on "Bjørn Jentoft" channel with the title "Hyper-V: Windows installation to ISCSI disk". I followed all the steps and configurations but it didn't quite work for me.

I keep repeating his video to see if I missed something on the configuration steps, but when I checked everything it appears that I didn't miss anything based on what he showed on the video tutorial.

By the way he used HYPER-V on his tutorial and I'm using physical machines.

Dave M
  • 4,494
  • 21
  • 30
  • 30

2 Answers2

3

I’ve read about different successful iPXE implementations with StarWind iSCSI target, but haven't tested myself yet.

Here is an article that you may find helpfull: https://jonmccune.wordpress.com/2011/12/19/diskless-windows-7-with-iscsi-and-gpxe/

Strepsils
  • 4,817
  • 9
  • 14
  • The link probably works fine, but it refers to gPXE and I think it should be clearly stated that gPXE is out of date and not maintained, so anything in that article that says gPXE should be replaces with iPXE, and there might be better way to do some things. for example replace `dhcp net0` with just `dhcp` and `set keep-san` is no longer used. – NiKiZe Aug 03 '17 at 15:12
2

Message show in the image is: tftp://192.168.1.1/client1.txt... No such file or directory (http://ipxe.org/2d12603b)

So the file "does not exist" on the tftp server and following that link there is some suggestions:

  • Check that you are attempting to download the correct file.
  • Check that you can retrieve the file using an alternative TFTP client, such as tftp-hpa on Linux.

My suggestion in a case like this is to check the tftp servers log, or resort to packet dumps (for example with wireshark) to see what is going on.

In this case my guess is on that Windows TFTP server has not been configured to allow that path. Normally it only accepts paths that starts with Boot, see this documentation: http://ipxe.org/appnote/chainload_wds

And here is a guide for what seems to be exactly this scenario: http://ipxe.org/howto/wds_iscsi

NiKiZe
  • 1,189
  • 7
  • 17