iPXE discussion forum
vcreate in script and system reset - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: vcreate in script and system reset (/showthread.php?tid=3725)



vcreate in script and system reset - dmcgarty - 2012-07-25 01:11

I am attempting to use an ipxe script to set up a vlan (2500) on net0 and initiate a dhcp on the interface (net0-2500). Here is the script I am trying to use.

#!ipxe

vcreate --tag 2500 net0
dhcp net0-2500

chain http://192.168.1.1/mboot.c32 -c http://192.168.1.1/boot.cfg

The system behaves as though the reset button is pushed a split second after the vcreate is run. I have shortened the script down to just:

#!ipxe

vcreate --tage 2500 net0
shell

to try and troubleshoot the problem but the reset occurs before I get the shell prompt. Here is the funny thing. If I type the Ctrl-B sequence, I can get to the ipxe prompt. From there if I type the vcreate, dhcp and chain commands manually at the commandline, it all works (!?). Any ideas why the commands in a script would cause a system reset where interactive entry of the same commands works fine?

Thanks


RE: vcreate in script and system reset - robinsmidsrod - 2012-07-25 15:30

This could be a bug. I would suggest you report it on the mailing-list.


RE: vcreate in script and system reset - dmcgarty - 2012-07-25 20:26

Will do. I got it working today by stripping out some features we don't use (iSCSI, FCOE sanboot) and recompiling the undionly.kpxe binary. Working fine now for anyone that might run into the same issue.