ipxe chain to wdsmgfw.efi
|
2017-10-17, 18:29
Post: #1
|
|||
|
|||
ipxe chain to wdsmgfw.efi
Hi I've a working DHCP/ipxe setup which uses a following ipxe script.
#!ipxe echo info chain http://${next-server}:PORT#/ipxe/${netX/mac:hex} chain http://${next-server}:PORT#/ipxe/${netX/mac:hex} When ipxe vist above chain I like to do either linux or windows. Linux works fine as Im loading the image using kernel & initrd. But for windows is not working as Im asking it to fetch the image via another chain: #!ipxe set netX/next-server windows-tftp-IP chain tftp://windows-tftp-IP/SMSboot\\x64\\wdsmgfw.efi Can anyone plz help? |
|||
2017-10-17, 18:52
Post: #2
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
Do you get any kind of error or lead to as what is wrong?
Have you seen this very similar thread?: http://forum.ipxe.org/showthread.php?tid=10403 Use GitHub Discussions VRAM bin |
|||
2017-10-17, 19:35
Post: #3
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
@NiKiZe
Error: http://${next-server}:PORT#/ipxe/MAC-ADDRESS... ok Could not boot: Exec format error (http://ipxe.org/2e008081) Just read the thread you sent. I don't think they are doing double chain loading |
|||
2017-10-17, 21:00
Post: #4
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
(2017-10-17 19:35)danishm Wrote: http://${next-server}:PORT#/ipxe/MAC-ADDRESS... ok Is that supposed to return a script or what does it give back? If it is a script have you followed the last main point on the page your error links to? http://ipxe.org/2e008081 Wrote: Use GitHub Discussions VRAM bin |
|||
2017-10-18, 15:05
Post: #5
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
It return a script which looks like following:
# below are stored for reference only. not actually used #!ipxe echo +--------- ipxe --------------------------------------------- echo | mac.................: ${mac} echo | uuid................: ${uuid} echo | serial..............: ${serial} echo | ip..................: ${ip} echo | manufacturer........: ${manufacturer} echo | product.............: ${product} echo +------------------------------------------------------------ imgfree set netX/next-server IP-addr chain tftp://IP-addr/SMSboot\\x64\\wdsmgfw.efi File normally gets generated as part of the an automated python code (which runs on linux-box) but to rule that out I manually created a file using vi (default for vi is ASCII text, and I made sure its in ASCII). I guess the question Im looking for is it allow to do multiple chain loading while in UEFI mode ? First Chain: chain http://IP-addr:port#/ipxe/${net0/mac:hex} (First chain then sends the request to a another ipxe script and request to do a second chain) Second Chain: chain tftp://IP-addr/SMSboot\\x64\\wdsmgfw.efi |
|||
2017-10-18, 19:20
Post: #6
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
Are you sure you are in EFI mode? could you post a screen-shot of what you actually see with that error, preferably together with the iPXE "Features" header.
chain works just fine with multiple steps. but eighter your tftp server returns garbage when using that chain, or you are not running in the mode that you think you are, and thus get the "Exec format error (http://ipxe.org/2e008081)" message. Following the suggestions on the error page, without making any assumptions is the best way to solve this. You might also want to use wireshark or similar on the machine with the tftp server, to actually see what the server returns, and then verify that it is correct. For example by using imgfetch tftp://IP-addr/SMSboot\\x64\\wdsmgfw.efi followed by imgstat you will get the filesize of the downloaded file, which you then can compare to the file on the server. Use GitHub Discussions VRAM bin |
|||
2017-11-22, 16:05
Post: #7
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
This is what works for me:
Code: #!ipxe |
|||
2018-01-26, 00:33
Post: #8
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi
d4rk3... Thanks this indeed worked.. cheers
|
|||
2018-01-28, 13:48
Post: #9
|
|||
|
|||
RE: ipxe chain to wdsmgfw.efi | |||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)