Marking the bug confirmed as I've been able to reproduce it in a kvm+libvirt environment using gPXE to boot off the iscsi target. To reproduce, you'll need two guests and manage the dhcp server configuration (to send specific dhcp option to the iscsi initiator system). Using libvirt: 1. Create a network that doesn't have a dhcp server running: net1 44648543-d59d-4e61-94b4-61450fff3474 2. Install a guest that will act as the iscsi target (see comment 4). Moreover install dnsmasq in the guest: the iscsi target will serve as the boot server for the network (dhcp+tftpboot). Configure dnsmasq to act as the boot server on the network: mathiaz@itarget:~$ cat /etc/dnsmasq.d/pxe #DHCP part domain=example.org dhcp-range=192.168.222.100,192.168.222.150,255.255.255.0,2h dhcp-option=option:router,192.168.222.1 dhcp-authoritative # TFTP part enable-tftp tftp-root=/srv/tftproot dhcp-match=gpxe,175 # tags the request with net:gpxe if the gPXE option was supplied in DHCP request dhcp-option=175,8:1:1 # turn on the keep-san option to allow installation dhcp-boot=net:#gpxe,virtio-net.pxe # Here #gpxe means 'not gpxe': that is the tag is not set dhcp-option=net:gpxe,17,"iscsi:192.168.222.2::::iqn.2001-04.com.example:storage.disk1" 3. Get a virtio-net PXE boot room (Unload PXE stack) from http://rom-o-matic.net/ and put in /srv/tftproot/ as virtio-net.pxe (as outlined in the configuration file above). 4. Define a guest with no block devices: mathiaz@uec-node:~/images/client1$ cat libvirt.xml client1 1adaabdc-ea8d-4328-87cb-8aa47f64acd4 512000 1 hvm destroy restart destroy /usr/bin/kvm The guest will first try to boot for the network then from the mini.iso file. 5. Start the install on ISCSI: connect to the vnc console of the guess and skip the network boot (Q). The mini.iso prompt should show up. Start the install with "cli iscsi=true". 6. Go through the install, skipping any block device installation. At partition time, start by login into the iscsi target and then install to the newly created SCSI device. 7. When the installation has finished reboot the system and boot from the network. The guest should chainload the gPXE rom from the network. gPXE should then log into the target and load grub from there.