Forced network boot attempt failed check cable and settings
If I manually boot into PXE from F12, it works just fine.
What method are you folks using to get the machines rebooted into PXE boot (from remotely)?
Thank you.
Answers (3)
Comments:
-
so far just the one machine that we tested, optiplex 960. Same part of the network, if we manually hit F12 and select PXE / NIC, then it boots to Kace just fine. What method are you using in your environment to get the boxes rebooted and into Kace? - bthai 12 years ago
-
For the desktops, new machines are manually booted to PXE the first time. A CCTK script set the nic as the first boot device. Then the K2 has boot actions set for local hard drive. If we need to re-image we change the boot action, and send a reboot signal from the k1. - dchristian 12 years ago
-
wow, that's a very interesting approach. So your desktops are "permanently" set to NIC boot and the K2000 directs it to HDD boot. Your list under the boot actions tab must be huge. This is a creative method, thank you for the suggestion!
For the CCTK script, I imagine you are doing both cctk bootorder --enabledevice= and then cctk bootorder --sequence= ?
Thank you - bthai 12 years ago
this is what I ended doing, created a network deployable package with CCTK files and these commands:
cd cctk
cctk --embnic1=on
cctk bootorder --disabledevice=0,1,2,3,4,5
cctk bootorder --enabledevice=embnic
shutdown /f /r
during the K2000 scripted install (rebuilding the box), I add a KBE task that does this:
cctk bootorder --enabledevice=0,1,2,3,4,5
this is what I ended doing, created a network deployable package with CCTK files and these commands:
cd cctk
cctk --embnic1=on
cctk bootorder --disabledevice=0,1,2,3,4,5
cctk bootorder --enabledevice=embnic
shutdown /f /r
during the K2000 scripted install (rebuilding the box), I add a KBE task that does this:
cctk bootorder --enabledevice=0,1,2,3,4,5