Boot winpe StorageNode
-
Hello,
I have a 1.5.9 Fog server with 1.5.9 storage nodes.
I have a winpe entry that starts on the fog server with the tftp menu parameters
(set tftp-path //${fog-ip}
set pe-path ${tftp-path}/os/winpe).How to start on storage nodes (variable fog-ip)?
Thanks -
@Deblau73 The
fog-ip
variable always points to the main FOG server node. We added a new variable calledstorage-ip
in dev-branch version 1.5.9.37 (github commit) or manually add the change in/var/www/html/fog/lib/fog/bootmenu.class.php
. So you can update to the latestdev-branch
to get it. It will be a few months till we get all things ready for the next official release. -
@sebastian-roth Thank you, that’s exactly what I was looking for.
I changed the file /var/www/html/fog/lib/fog/bootmenu.class.php manually.
The IP is correct (IP storage node) but I have a file error not found (wimboot).
Yet I copied the files from tftpboot to the storagenode.
I’m not in front of the computer. I’m looking on Monday. -
@deblau73 said in Boot winpe StorageNode:
(set tftp-path //${fog-ip}
set pe-path ${tftp-path}/os/winpe).Shouldn’t that be:
set tftp-path tftp://${...
? -
@sebastian-roth set tftp-path tftp://${storage-ip}
-
@deblau73 Hello,
It’s perfect with set tftp-path tftp://${storage-ip}Thanks