I was wondering if i could add my old server into the advanced menu of my new server to make it easier to download images from the old server as i migrate workstations over to the new one?
ive seen a thread or two about doing it the other way around but not this way… i wouldn’t know where to start with the ipxe menu item :-s i did get Clonezilla and Seatools successfully working with the following menu though
menu
item --gap – ---------------- iPXE boot menu ----------------
item Clonezilla Clonezilla Network Boot
item SeaTools Seatools 2.2
item shell ipxe shell
item ipxedemo ipxedemo
item return return to previous menu
choose --default Clonezilla --timeout 5000 target && goto ${target}
:Clonezilla
kernel http://${fog-ip}/pxetools/clonezilla/vmlinuz
initrd http://${fog-ip}/pxetools/clonezilla/initrd.img
imgargs vmlinuz boot=live config noswap nolocales edd=on nomodeset ocs_live_run=“ocs-live-general” ocs_live_extra_param=“” ocs_live_keymap=“” ocs_live_batch=“no” ocs_daemonon=“ssh” usercrypted=Kb/VNchPYhuf6 ocs_lang=“” vga=788 nosplash noprompt fetch=http://${fog-ip}/pxetools/clonezilla/filesystem.squashfs
boot || goto MENU
:SeaTools
initrd http://${fog-ip}/pxetools/seatools/SeaToolsDOS223ALL.ISO || prompt
chain http://${fog-ip}/${fog-webroot}/service/ipxe/memdisk iso raw || prompt
boot || prompt
goto MENU
:ipxedemo
chain http://boot.ipxe.org/demo/boot.php ||
goto MENU
:shell
shell ||
goto MENU
:return
chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} ||
prompt
goto MENU
autoboot [/CODE]