Btw…I tried version 8271 and everything is working properly and upgraded without any issues or changes to be made to any files. UEFI worked without any issue.
Posts
-
RE: default.ipxe
-
RE: default.ipxe
@Tom-Elliott Hello Tom, Sorry for the delay. Here is the file:
#!ipxe
cpuid --ext 29 && set arch x86_64 || set arch i386
params
param mac0 ${net0/mac}
param arch ${arch}
param platform ${platform}
param product ${product}
param manufacturer ${product}
param ipxever ${version}
param filename ${filename}
isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
:bootme
chain http://10.30.40.55//fog/service/ipxe/boot.php##paramsThe only difference I saw was the extra “/” as compared to the original. I seemed to have issues only with UEFI booting until I copied my old tftpboot folder over. I thought maybe the ipxe.efi file had been updated between builds. At any rate, I am running without issues at this point. Thank you.
-
RE: default.ipxe
Hi
Kept my 8088 snapshot and swapped my vms back and forth to verify (8088 is working without issues)…
in 8088 here are the values for Web interface -> FOG Configuration -> FOG Settings -> Web Server ->:
FOG_WEB_ROOT = /fog/
FOG_WEB_HOST = 10.30.40.55in 8088 here is the value for Web interface -> Storage Management -> [node name] ->
Web root = /fogAfter a git pull and install of Fog to 8103 the values remain the same, but the default.ipxe file changed again.
I edited the default.ipxe file to try to fix by taking out the extra “/”, but the pxe boot issue continued. I decided to attempt to copy 8088’s tftpboot folder to 8103 and everything is working again. Not sure where the problem stems from though.
Thanks,
Jason
-
default.ipxe
I noticed a difference between versions 8088 and 8103 on the default.ipxe after an upgrade which caused my UEFI pxe booting to fail. For example…
8088 under “:bootme” i had the following:
chain http://addressofmyfogserver/fog/service/ipxe/boot.php##params
8103 under “:bootme” the file reads:
chain http://addressofmyfogserver//fog/service/ipxe/boot.php##paramsnot sure if it is a bug, but the extra “/” causes an issue with pxe booting.