• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Cire3
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 30
    • Best 7
    • Controversial 0
    • Groups 0

    Posts made by Cire3

    • RE: Does Fog work with Proxmox?

      Ok, as I hate people that don’t come back. I try my best not to be that guy.

      FOG problem = Nope… As usual.

      Problem with dropouts, scrambled data. Proxmox 8 is very angry with my onboard nic. It uploads without issue (and very fast I may say) But deployment it just crapped out. Every time it re-connected, Fog just tried to do it’s job over and over. The blast of data just shut the nic down.

      Finally found this looking in the Proxmox log. Found ethernet adapter hang detected, then reset.

      Also a great excuse to finally order that dual 10Gb card. She’s happy now running full speed. Hopefully faster when the 10Gb switch shows up 🙂

      Thanks to all that looked over this, and even more for the reply. !

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Host not registered" appears again and again

      I just had this issue with a few HP models. If you look in the bios, do you have an option to use a unique system mac address OR adapter address? That one drove me nuts for a minute…

      It’s great if you use a dongle so you aren’t accidentally uploading over the wrong image due to using the dongles MAC address. But it’s only great when you remember it’s a setting.

      When I get off lease systems in, I like to clear the bios and security settings to factory. However doing so will set it to use a system unique MAC address during pxe boot and not the ethernet address.

      I think it’s only on business class models without a lan port.

      Hope it helps.

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: pxe booting using dhcp from home router

      @george1421 Every time I think I’m a nerd, I see George break down a setting in a 3 paragraphs, dissecting it in the craziest detail.

      You guys rock. That level of detail is seriously helpful. Allowing us to learn other things in the process to help us later. When I see that effort to help someone, I just like to call it out !

      I’m the kind of guy that needs to take everything apart to see how it all works. You guys definitely help to paint the picture.

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Management images problem

      Is he talking about the folder and data still being in /images? I thought Fog was designed as to never actually delete the files. Easily removed in terminal however. Hard to translate what his issue actually is.

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Does Fog work with Proxmox?

      @rodluz I believe I started ZFS, then installed the VM. Single disk, 4Tb of a 12Tb. Only VM on the disk. Installed same exact way I had on ESI 7.

      This is my first time using a ZFS pool, and now that you mention it, that is different from the old install.

      posted in FOG Problems
      Cire3C
      Cire3
    • Does Fog work with Proxmox?

      I’ll cut this short as I keep trying to post, but I’m flagged for spam ?

      Was on ESXI 7, moved to Proxmox VE 8.2. I can upload, but I can’t bring the image back down. I get read errors like stdin Decoding error (36) Corrupted block detected.

      I can reboot and try again to find the same issue. Anything I need to know about Fog and Proxmox ?

      Clean install as a VM Debian Bookworm Server, latest Fog. New install, and reproduced with a few different models. SATA and NVMe.

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Chainloading Simple Next Server ?

      Ok, I think I got it close…

      My Setup…

      PFSense 10.22.24.1
      In PFSense next server points to fog (works without issue)
      Fog 10.22.24.5 (No DHCP)
      netboot = 10.22.24.8

      This is what I have in Parameters

      server:ipv4 10.22.24.8
      set newbootfile netboot.xyz.efi
      set net0.dhcp/next-server ${newserver}
      set net0.dhcp/filename ${newbootfile}
      set proxydhcp/filename ${newbootfile}

      chain tftp://${newserver}/${newbootfile} || goto Menu

      With this I now boot from fog menu to iPXE initializing devices.

      If I use netboot USB image from netboot.xyz, it boots to the netboot.xyz server without issue ? Not sure how it just “knows” where it’s at. Hopefully this helps ?

      //////////////////////////////////////////////////////////////////////////////////////////

      So I looked at the autoexec.ipxe file and this is what is in it :

      #!ipxe
      set esc:hex 1b
      set bold ${esc:string}[1m
      set boldoff ${esc:string}[22m
      set fg_gre ${esc:string}[32m
      set fg_cya ${esc:string}[36m
      set fg_whi ${esc:string}[37m
      set VARS_ERR Local vars file not found… attempting TFTP boot…
      set TFTP_ERR Local TFTP failed… attempting remote HTTPS
      set V6_ERR IPv6 appears to have failed… attempting IPv4…
      set HTTPS_ERR HTTPS appears to have failed… attempting HTTP
      set HTTP_ERR HTTP has failed, localbooting…
      set site_name netboot.xyz
      set boot_domain boot.netboot.xyz
      set ipxe_version ${version}
      set version 2.x
      set conn_type https

      :start
      echo ${bold}${fg_gre}${site_name} - ${fg_whi}v${version}${boldoff}
      iseq ${site_name} netboot.xyz || echo ${bold}${fg_whi}Powered by ${fg_gre}netboot.xyz${fg_whi}${boldoff}
      prompt --key m --timeout 4000 Hit the ${bold}m${boldoff} key to open failsafe menu… && goto failsafe || goto dhcp

      :dhcp
      echo
      dhcp || goto netconfig
      isset ${next-server} && isset ${proxydhcp/next-server} && goto choose-tftp || set tftp-server ${next-server} && goto load-custom-ipxe

      :choose-tftp

      Load “proxy settings” from root server

      chain tftp://${next-server}/local-vars.ipxe || echo ${VARS_ERR}

      Check if the proxy-dhcp-vars script has made any usable command about how to progress with a next-server and a proxy-next-server being set

      isset ${use_proxydhcp_settings} && iseq ${use_proxydhcp_settings} true && goto set-next-server ||
      prompt --key p --timeout 4000 DHCP proxy detected, press ${bold}p${boldoff} to boot from ${proxydhcp/next-server}… && set use_proxydhcp_settings true || set use_proxydhcp_settings false
      goto set-next-server

      :set-next-server
      iseq ${use_proxydhcp_settings} true && set tftp-server ${proxydhcp/next-server} || set tftp-server ${next-server}
      goto load-custom-ipxe

      :load-custom-ipxe
      isset ${tftp-server} && iseq ${filename} netboot.xyz.kpxe && goto tftpmenu ||
      isset ${tftp-server} && iseq ${filename} netboot.xyz-undionly.kpxe && goto tftpmenu ||
      isset ${tftp-server} && iseq ${filename} netboot.xyz.efi && goto tftpmenu ||
      isset ${tftp-server} && iseq ${filename} netboot.xyz-snp.efi && goto tftpmenu ||
      isset ${tftp-server} && iseq ${filename} netboot.xyz-snponly.efi && goto tftpmenu ||
      isset ${tftp-server} && iseq ${filename} netboot.xyz-arm64.efi && goto tftpmenu ||
      goto menu

      :failsafe
      menu ${boot_domain} Failsafe Menu
      item localboot Boot to local drive
      item netconfig Manual network configuration
      item vlan Manual VLAN configuration
      item retry Retry boot
      item debug iPXE Debug Shell
      item reboot Reboot System
      choose failsafe_choice || exit
      goto ${failsafe_choice}

      :netconfig
      echo Network Configuration:
      echo Available interfaces…
      ifstat
      imgfree
      echo -n Set network interface number [0 for net0, defaults to 0]: ${} && read net
      isset ${net} || set net 0
      echo -n IP: && read net${net}/ip
      echo -n Subnet mask: && read net${net}/netmask
      echo -n Gateway: && read net${net}/gateway
      echo -n DNS: && read dns
      ifopen net${net}
      echo Attempting chainload of ${boot_domain}…
      goto menu || goto failsafe

      :vlan
      echo VLAN Configuration:
      echo Available interfaces…
      ifstat
      imgfree
      echo -n Set network interface number [0 for net0, defaults to 0]: ${} && read net
      isset ${net} || set net 0
      echo -n Set VLAN 802.1Q tag [0 to 4094]: ${} && read vlan
      vcreate --tag ${vlan} net${net}
      ifconf --configurator dhcp net${net}-${vlan} || echo DHCP failed trying manual && goto netvlan
      echo Attempting chainload of ${boot_domain}…
      goto menu || goto failsafe

      :netvlan
      echo -n IP: && read net${net}-${vlan}/ip
      echo -n Subnet mask: && read net${net}-${vlan}/netmask
      echo -n Gateway: && read net${net}-${vlan}/gateway
      echo -n DNS: && read dns
      ifopen net${net}-${vlan}
      echo Attempting chainload of ${boot_domain}…
      goto menu || goto failsafe

      :tftpmenu
      chain tftp://${tftp-server}/local-vars.ipxe || echo ${VARS_ERR}
      isset ${hostname} && chain --autofree tftp://${tftp-server}/HOSTNAME-${hostname}.ipxe || echo Custom boot by Hostname not found trying MAC…
      chain --autofree tftp://${tftp-server}/MAC-${mac:hexraw}.ipxe || echo Custom boot by MAC not found booting default…
      chain --autofree tftp://${tftp-server}/menu.ipxe || echo ${TFTP_ERR} && goto menu

      :menu
      :menu_https
      set conn_type https
      goto menu_start

      :menu_http
      set conn_type http
      goto menu_start

      :menu_start
      isset ${netX/dns6} && goto menu_v6 || goto menu_v4
      :menu_v6
      isset ${netX/dns6_bak} && set netX/dns6 ${netX/dns6_bak} ||
      set netX/dns6_bak ${netX/dns6}
      echo Attempting ${conn_type} boot over IPv6…
      chain --autofree ${conn_type}://${boot_domain}/menu.ipxe || echo ${conn_type} IPv6 failed… attempting IPv4…
      clear netX/dns6
      :menu_v4
      echo Attempting ${conn_type} boot over IPv4…
      chain --autofree ${conn_type}://${boot_domain}/menu.ipxe || echo ${conn_type} IPv4 failed…
      iseq ${conn_type} https && goto menu_http || goto localboot

      :localboot
      exit

      :retry
      goto start

      :reboot
      reboot
      goto start

      :debug
      echo Type “exit” to return to menu
      shell
      goto failsafe

      //////////////////////////////////////////////////////////////////////////

      Huge thanks in advance ! You guys have ALWAYS been awesome helping with Fog (And non related issues as such)

      posted in FOG Problems
      Cire3C
      Cire3
    • Chainloading Simple Next Server ?

      Reading a lot of Chainloading in the forum, but none seem to point to a simple next server ? Any way from Fog menu to allow a second PXE server ?

      Current Fog working well with pfsense handling Fog as first PXE server. Then I would like the option to jump to the next server.

      I have read everything from it’s broken, to crazy options “if” Fog has a job for it. Is this a simple edit in Fog menu or can be added to advanced ?

      Looking to boot to nextboot.xyz for second server.

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Chain fog PXE with another one

      @zeltron80 So what would this look like ? I just simply want another server option in the menu. Is it using your ‘exit’ => ‘exit’ to ‘exit’ => ‘chain tftp://xxx.xxx.xxx.xxx/menu.ipxe’ ?

      posted in General Problems
      Cire3C
      Cire3
    • RE: Not a Fog problem, but solution ?

      You sir rock ! I’ll give it a read, thanks !

      Right after I win my battle of Carbon X1 Gen 7 just returns to boot menu after Downloading NBP file.

      These Carbons are the worst…

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Accidently deleted Admin User

      I believe a reinstall would do the same no ?

      posted in FOG Problems
      Cire3C
      Cire3
    • Not a Fog problem, but solution ?

      I’m thinking this shouldn’t be difficult issue to address. Some of the people here are off the charts smart. Before I go screwing up fog that has been amazing from the very first version (No joke as I have imaged 1000’s of PC’s over the years)

      Ok, to the point. I have network boot from PFSense to fog as next server. And Fog set to boot to the menu, and if you do nothing after a few seconds… It boots to the local drive as normal. In case anyone boots to it by mistake, or for some crazy reason network is set to first boot device.

      I would also like to run a netboot.xyz server. What would I change, or where do I change boot to local drive… To boot to next pxe server ?

      I see some similar setups, but not exact how I would like it to act.

      As always, thanks in advance ! Fog has been a rock solid beast !

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: FOG Project call for engagement

      I have donated a couple times and love the fog project. However, I’m not to speed to help with development. However, I would be willing to help in testing. I put many models on fog and have access to a lot of hardware. If I can be of any help, please let me know. I also wouldn’t frown to a small fee every year. Do you have any ability to know how many fog users are out there?

      posted in Announcements
      Cire3C
      Cire3
    • This is a new one. Can't find image?

      Long story short.

      HP ML350p with MD1000 Storage. Built on RAID 10 using 11 X 3Tb Drives 2 Luns 2 Hot Spare.

      ESXi 6.5

      Lost a drive on the RAID 10, no big deal. It grabbed a Hot Spare and it rebuilt. Replaced the failed drive, and by morning 3Tb of data is back.

      Launched vSphere, and had to re-import VMFS into the datastore.

      I kept the same disk signature, rebooted and boom, fog is again noticed as a VM. Rock on !

      Fire up fog (Loaded as 1 Disk on 1 LUN) I can boot to fog, log into fog, and see images where they should be.

      One deploy worked no problem, however the next 2 models did not ?

      Unable to locate image store (/bin/fog.download)

      I’m a bit confused as they seem to be there, and fog is up and running deploying one image.

      UUID didn’t change on RAID 10, kept disk signature.

      Anything I should look at as a path that may have been changed somehow, and somewhere I’m not looking ?

      Many thanks in advance ! I hate to rebuild as moving 3+ Tb of data sucks !

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Error after login via PXE.

      @george1421 Actually I figured it out (When you pointed me in the right direction )

      My first item ( newer image )

      item -Win10–1803–o16–ninite–8-28-18 -Win10–1803–o16–ninite–8-28-18 (89)

      It see’s the -Win10 and pissed it off. I created it that way so it would be on the top of the list… And not knowing a “-” would piss it off.

      Changed the name of the image, as well as the directory name it was in.

      Now the menu opens after I log in !!

      Can’t say enough about you guys, huge help here !!!

      Many thanks for your time and steering me in the direction !!

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Error after login via PXE.

      @Cire3

      OOPS, let me correct that… Didn’t take the <> out

      First part of it as it’s too long to post all of it

      #!ipxe
      set fog-ip 10.22.24.5
      set fog-webroot fog
      set boot-url http://${fog-ip}/${fog-webroot}
      goto MENU
      :MENU
      menu
      item -Win10–1803–o16–ninite–8-28-18 -Win10–1803–o16–ninite–8-28-18 (89)
      item 2170pi5win10fuo16 2170pi5win10fuo16 (88)
      item 2540pi5Win10o13 2540pi5Win10o13 (87)
      item 2540pi5Win7o13 2540pi5Win7o13 (86)
      item 2560pi5Win10013 2560pi5Win10013 (85)
      item 2560pi5Win7013 2560pi5Win7013 (84)
      item 2570pwin10fu16 2570pwin10fu16 (83)
      item 2740pWin7o13 2740pWin7o13 (82)
      item 6000C2QWin10FUo13 6000C2QWin10FUo13 (81)
      item 6000ProCore2Quad7Pro0 6000ProCore2Quad7Pro0 (80)
      item 600ProDeskWin101803x646-4-18 600ProDeskWin101803x646-4-18 (2)
      item 6200SFFi7Win10o16 6200SFFi7Win10o16 (79)
      item 6300i5win7o13 6300i5win7o13 (78)
      item 6300i7Win10CUo16-8-17 6300i7Win10CUo16-8-17 (77)
      item 6300i7Win10FUo16 6300i7Win10FUo16 (76)
      item 6460bwin10o13 6460bwin10o13 (75)
      item 6460bWin7o13 6460bWin7o13 (74)
      item 6570bi5Win10 6570bi5Win10 (73)
      item 8000C2Qwin10o13CU 8000C2Qwin10o13CU (72)
      item 8000ProC2QSFFWin7o13 8000ProC2QSFFWin7o13 (71)
      item 8000ProSFFC2QWin10o13 8000ProSFFC2QWin10o13 (70)
      item 8200CMTi7Win7o13 8200CMTi7Win7o13 (69)
      item 8200ELiteWin10FUo16 8200ELiteWin10FUo16 (68)
      item 8300ProWin10o16FU 8300ProWin10o16FU (67)
      item 840ELitebookG1WIn10FCU 840ELitebookG1WIn10FCU (66)
      item 8440pi5Win10013 8440pi5Win10013 (65)
      item 8440pi5Win7 8440pi5Win7 (64)
      item 8460pi5Win10013 8460pi5Win10013 (63)
      item 8460pi5WIn7o13 8460pi5WIn7o13 (62)
      item 8470pi5win10o16 8470pi5win10o16 (61)
      item 8540pi7Win10010 8540pi7Win10010 (60)
      item 8560p-win10x64–1803 8560p-win10x64–1803 (59)
      item 8560pi5Win7o13 8560pi5Win7o13 (58)
      item 8560pi7Win10_fu_16 8560pi7Win10_fu_16 (57)
      item 8560ww10016 8560ww10016 (56)
      item 8570pi5Win10o16 8570pi5Win10o16 (55)
      item 8570pi5Win7016 8570pi5Win7016 (54)
      item 8740wi7Win10o13 8740wi7Win10o13 (53)
      item 8740wWin7o13 8740wWin7o13 (52)
      item 9470mi7Win10x641803–8-3-18 9470mi7Win10x641803–8-3-18 (51)
      item 9480Folioi7win1018038-1-18 9480Folioi7win1018038-1-18 (50)
      item CarbonX1G3Win10x64FCU CarbonX1G3Win10x64FCU (49)
      item CF-53Win10CUo167-19-17 CF-53Win10CUo167-19-17 (48)
      item CF53i5Win10o16 CF53i5Win10o16 (47)
      item DC5800C2DWin7o13 DC5800C2DWin7o13 (46)
      item DC7900WIn7o10 DC7900WIn7o10 (45)
      item EliteDesk800G1i5win101803 EliteDesk800G1i5win101803 (44)
      item Fijitsu-T935-win10-FCU Fijitsu-T935-win10-FCU (43)
      item Folio9480mWin101803o16 Folio 9480m Win10 1803 o16 (1)
      item LenovoM71eSFFi3win10o13 LenovoM71eSFFi3win10o13 (42)
      item LenovoM71eSFFi3win7o13 LenovoM71eSFFi3win7o13 (41)
      item LenovoM92Pi5Win10o16SFF LenovoM92Pi5Win10o16SFF (40)
      item LenovoRecoveryWin7 LenovoRecoveryWin7 (39)
      item LenovoT60pWin10016 LenovoT60pWin10016 (38)
      item LenovoT60PWin7 LenovoT60PWin7 (37)
      item M58PSFFLenovoc2dWin10fuo13 M58PSFFLenovoc2dWin10fuo13 (36)
      item M83Win10-CU-o16–8-21-17 M83Win10-CU-o16–8-21-17 (35)
      item M83Win10-FU-o16–8-11-17 M83Win10-FU-o16–8-11-17 (34)
      item M92pUSFFWin10FCU4-16-18 M92pUSFFWin10FCU4-16-18 (33)
      item PDSi5Win10016CU PDSi5Win10016CU (32)
      item PDSVectorsff15win10o13 PDSVectorsff15win10o13 (31)
      item PDSVectorsffWin7013 PDSVectorsffWin7013 (30)
      item R61C2DWin7Mark R61C2DWin7Mark (29)
      item Revolve810G3Win10CUo16 Revolve810G3Win10CUo16 (28)
      item Revolve810G3Win10FUo16 Revolve810G3Win10FUo16 (27)
      item surface-Pro-3-win10 surface-Pro-3-win10 (26)
      item T420i5Win10o13 T420i5Win10o13 (25)
      item T420i5Win7o13 T420i5Win7o13 (24)
      item T420sWin10FUo16112916 T420sWin10FUo16112916 (23)
      item T420sWin7o13 T420sWin7o13 (22)
      item T430i5Win10-FCU-4-17-18 T430i5Win10-FCU-4-17-18 (3)
      item T430si5Win7o13 T430si5Win7o13 (21)
      item T431sWin10CUo16 T431sWin10CUo16 (20)
      item T431swin10MAINo16 T431swin10MAINo16 (19)
      item T440s-Win10Prox64-FCU T440s-Win10Prox64-FCU (18)
      item T510i7Win10o16 T510i7Win10o16 (17)
      item T510i7Win7o13 T510i7Win7o13 (16)
      item T520i7Win10o13 T520i7Win10o13 (15)
      item T530Win10FU112916 T530Win10FU112916 (14)
      item T530Win7i5013 T530Win7i5013 (13)
      item T540pWin10o16CU T540pWin10o16CU (12)
      item W530-10pro1803-i7 W530-10pro1803-i7 (11)
      item W530Win10-FCU-k2000-4-18-18 W530Win10-FCU-k2000-4-18-18 (10)
      item Win-10-FU-X64 Win-10-FU-X64 (9)
      item x201lenovoi5Win10o13 x201lenovoi5Win10o13 (8)
      item X201Lenovoi5Win7Proo13 X201Lenovoi5Win7Proo13 (7)
      item X230i5TabWin10x64o16 X230i5TabWin10x64o16 (6)
      item X230i5TabWin7x64o16 X230i5TabWin7x64o16 (5)
      item Z420 Z420 (4)
      item return Return to menu
      choose target && goto ${target}
      :-Win10–1803–o16–ninite–8-28-18
      set imageID 89
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2170pi5win10fuo16
      set imageID 88
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2540pi5Win10o13
      set imageID 87
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2540pi5Win7o13
      set imageID 86
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2560pi5Win10013
      set imageID 85
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2560pi5Win7013
      set imageID 84
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2570pwin10fu16
      set imageID 83
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :2740pWin7o13
      set imageID 82
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6000C2QWin10FUo13
      set imageID 81
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6000ProCore2Quad7Pro0
      set imageID 80
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :600ProDeskWin101803x646-4-18
      set imageID 2
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6200SFFi7Win10o16
      set imageID 79
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6300i5win7o13
      set imageID 78
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6300i7Win10CUo16-8-17
      set imageID 77
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6300i7Win10FUo16
      set imageID 76
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6460bwin10o13
      set imageID 75
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6460bWin7o13
      set imageID 74
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :6570bi5Win10
      set imageID 73
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8000C2Qwin10o13CU
      set imageID 72
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8000ProC2QSFFWin7o13
      set imageID 71
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8000ProSFFC2QWin10o13
      set imageID 70
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8200CMTi7Win7o13
      set imageID 69
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8200ELiteWin10FUo16
      set imageID 68
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8300ProWin10o16FU
      set imageID 67
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :840ELitebookG1WIn10FCU
      set imageID 66
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8440pi5Win10013
      set imageID 65
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8440pi5Win7
      set imageID 64
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8460pi5Win10013
      set imageID 63
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8460pi5WIn7o13
      set imageID 62
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8470pi5win10o16
      set imageID 61
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8540pi7Win10010
      set imageID 60
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8560p-win10x64–1803
      set imageID 59
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8560pi5Win7o13
      set imageID 58
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8560pi7Win10_fu_16
      set imageID 57
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8560ww10016
      set imageID 56
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8570pi5Win10o16
      set imageID 55
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8570pi5Win7016
      set imageID 54
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8740wi7Win10o13
      set imageID 53
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :8740wWin7o13
      set imageID 52
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :9470mi7Win10x641803–8-3-18
      set imageID 51
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :9480Folioi7win1018038-1-18
      set imageID 50
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :CarbonX1G3Win10x64FCU
      set imageID 49
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :CF-53Win10CUo167-19-17
      set imageID 48
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :CF53i5Win10o16
      set imageID 47
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :DC5800C2DWin7o13
      set imageID 46
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param imageID ${imageID}
      param qihost 1
      param username ${username}
      param password ${password}
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :DC7900WIn7o10
      set imageID 45

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Error after login via PXE.

      @george1421

      That was easy as fog is my user and password is my password 🙂

      This is what I get.

      #!ipxe
      set fog-ip 10.22.24.5
      set fog-webroot fog
      set boot-url http://${fog-ip}/${fog-webroot}
      echo Invalid login!
      clear username
      clear password
      sleep 3
      cpuid --ext 29 && set arch x86_64 || set arch i386
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param platform ${platform}
      param menuAccess 1
      param debug
      param sysuuid ${uuid}
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      :bootme
      chain -ar http://10.22.24.5/fog/service/ipxe/boot.php##params

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Error after login via PXE.

      Here it is, and thanks !! Wondering about file system corruption ?

      #!ipxe
      set fog-ip 10.22.24.5
      set fog-webroot fog
      set boot-url http://${fog-ip}/${fog-webroot}
      cpuid --ext 29 && set arch x86_64 || set arch i386
      goto get_console
      :console_set
      colour --rgb 0x00567a 1 ||
      colour --rgb 0x00567a 2 ||
      colour --rgb 0x00567a 4 ||
      cpair --foreground 7 --background 2 2 ||
      goto MENU
      :alt_console
      cpair --background 0 1 ||
      cpair --background 1 2 ||
      goto MENU
      :get_console
      console --picture http://10.22.24.5/fog/service/ipxe/bg.png --left 100 --right 80 && goto console_set || goto alt_console
      :MENU
      menu
      colour --rgb 0xff0000 0 ||
      cpair --foreground 1 1 ||
      cpair --foreground 0 3 ||
      cpair --foreground 4 4 ||
      item --gap Host is NOT registered!
      item --gap – -------------------------------------
      item fog.local Boot from hard disk
      item fog.memtest Run Memtest86+
      item fog.reginput Perform Full Host Registration and Inventory
      item fog.reg Quick Registration and Inventory
      item fog.deployimage Deploy Image
      item fog.multijoin Join Multicast Session
      item fog.sysinfo Client System Information (Compatibility)
      choose --default fog.local --timeout 10000 target && goto ${target}
      :fog.local
      sanboot --no-describe --drive 0x80 || goto MENU
      :fog.memtest
      kernel memdisk initrd=memtest.bin iso raw
      initrd memtest.bin
      boot || goto MENU
      :fog.reginput
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=http://10.22.24.5/fog/ consoleblank=0 rootfstype=ext4 storage=10.22.24.5:/images/ storageip=10.22.24.5 loglevel=4 mode=manreg
      imgfetch init_32.xz
      boot || goto MENU
      :fog.reg
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=http://10.22.24.5/fog/ consoleblank=0 rootfstype=ext4 storage=10.22.24.5:/images/ storageip=10.22.24.5 loglevel=4 mode=autoreg
      imgfetch init_32.xz
      boot || goto MENU
      :fog.deployimage
      login
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param username ${username}
      param password ${password}
      param qihost 1
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      param sysuuid ${uuid}
      :fog.multijoin
      login
      params
      param mac0 ${net0/mac}
      param arch ${arch}
      param username ${username}
      param password ${password}
      param sessionJoin 1
      isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
      isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
      param sysuuid ${uuid}
      :fog.sysinfo
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=http://10.22.24.5/fog/ consoleblank=0 rootfstype=ext4 storage=10.22.24.5:/images/ storageip=10.22.24.5 loglevel=4 mode=sysinfo
      imgfetch init_32.xz
      boot || goto MENU
      :bootme
      chain -ar http://10.22.24.5/fog/service/ipxe/boot.php##params ||
      goto MENU
      autoboot

      posted in FOG Problems
      Cire3C
      Cire3
    • Error after login via PXE.

      Reloaded the server about a week ago, managed to get all the images seen ( didn’t backup database )

      Anyway, had it running well… I was told we had a power outage, I guess some shut it down ( Power button )

      Now I’m getting a strange error after I login via PXE.

      So it boots to fog fine, I select Deploy Image, it asks for user/pass. As soon as I hit enter after user/password, I get this error.

      http://10.22.24.5/fog/service/ipxe/boot.php… ok
      Unrecognized option “-W”
      Useage :

      item [-m:–menu <menu>] [-k:–key <key>] [-d:–default] [-g:gap] [<label> [<text>]]

      See http://ipxe.org/cmd/items for further information
      Could not boot : invalid argument (http://ipxe.org/1c162202)
      Could not boot : invalid argument (http://ipxe.org/1c162202)
      Chainloading failed/ hit “s” for iPXE shell: reboot in 10 seconds

      This is the reason I rebuilt it last week, I had an older version that started goofing up. I figured I would just rebuild and upgrade anyway.

      Can’t find where to go here, everything I read looks good ?

      Thanks in advance !

      posted in FOG Problems
      Cire3C
      Cire3
    • RE: Can't see Images in menu after manually uploading.

      @Sebastian-Roth Yea, I remember some of this from before. I did create the image name exact so it matches the directory Fog creates. I upload all my images as single disk resizable. I’m not even getting to the partclone window.

      I’ll double check once again. The compression scale also must match huh ? Now that I didn’t know. Hell, that may have changed by what mood I was in…lol And time 😉

      I’ll give it another look, I know it has to be something stupid I’m missing.

      Thanks for your time as always !

      posted in FOG Problems
      Cire3C
      Cire3
    • 1 / 1