iPXE discussion forum
WDS TFTP loop - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: WDS TFTP loop (/showthread.php?tid=7765)



WDS TFTP loop - lupowolfi - 2015-07-07 12:04

Hi,

using the latest version from git (2015.07.07) I encountered an issue while chainloading to our Windows Deployment Server (WDS):
The client gets stuck in a request loop.

Examing the traffic with Wireshark shows the following three actions:

1. TFTP download of wdsnp.com (successful)
2. DHCP request + ack
3. another DHCP request + ack

These three action are repeated infinitely.

Reverting the changes of commit:
edf74df4abf0b9ed92f399272b0491851ba1ffaa [pxe] Always reconstruct packet for PXENV_GET_CACHED_INFO
seems to solve the issue.

Snippet of my script which forwards to WDS server:

Code:
:windows-wds
cpuid --ext 29 && set arch x64 || set arch x86
set netX.dhcp/next-server ${wds-server}
chain tftp://${wds-server}/Boot\\${arch}\\wdsnbp.com

Regards
lupowolfi


RE: WDS TFTP loop - Roader - 2015-08-11 22:11

Hello, sory, if my English may be bad.

I have some trouble. Have config for boot workstation form iSCSI (win7) and WDS server for network installation. IP address lased Microsoft DHCP and her set iPXE class for different #!ipxe configs. Some time, after reconfigured Win Serverv 2008R2, I given some trouble - on select in my menu "WDS Installation" the boot wdsnbp.com go in loop.

Item from menu:
Code:
:wds
chain /boot/x86/wdsnbp.com

After some time, found trouble in new version undionly.kpxe

At this screen the version, that no have trouble [Image: 34f9b30a7bdat.jpg]

On this, goin to loop
[Image: 2ef0a089695ct.jpg] [Image: c2c8ca368304t.jpg]




Some found on this post http://lists.ipxe.org/pipermail/ipxe-devel/2015-July/004284.html

Thanks )))


RE: WDS TFTP loop - mcb30 - 2015-08-29 17:06

(2015-07-07 12:04)lupowolfi Wrote:  1. TFTP download of wdsnp.com (successful)
2. DHCP request + ack
3. another DHCP request + ack

These three action are repeated infinitely.

Thanks! Should be fixed as of http://git.ipxe.org/ipxe.git/commitdiff/2ef04f0.

Michael