• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. cfsalyer
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 11
    • Best 2
    • Controversial 0
    • Groups 0

    cfsalyer

    @cfsalyer

    3
    Reputation
    443
    Profile views
    11
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    cfsalyer Unfollow Follow

    Best posts made by cfsalyer

    • RE: Dell XPS 8700 PXE boot error

      @george1421 Ok I just got much further removing option 60 from my DHCP server. I now get partclone and everything seems to be working now.

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Jaymes-Driver Yeah I’m going to segment the network and go a different route when i go into production. I just had to prove FOG server would work for our environment. And yes option 60 is being used for WDS. Thank you for all your help and @george1421 . I never noticed the port 4011 error until i captured the picture and then that lead me to checking server scope options.

      posted in Windows Problems
      C
      cfsalyer

    Latest posts made by cfsalyer

    • User Syslinux 6.03 to chain boot FOG and MDT/WDS

      I currently have syslinux booting to my MDT/WDS server. How can I get it to boot to my FOG server?

      This is my terrible boot menu for now

      DEFAULT vesamenu.c32
      PROMPT 0
      MENU COLOR TITLE 0 #ffffffff #00000000 none
      MENU BACKGROUND test.png
      MENU TITLE Custom boot

      #—boot to MDT WINPE IMAGES
      LABEL MDT
      MENU LABEL MDT Boot Images
      KERNEL pxeboot.0

      #—boot to hard disk
      LABEL local
      MENU DEFAULT
      MENU LABEL Boot from Harddisk
      LOCALBOOT 0
      Type 0x80

      #-boot to FOG
      LABEL FOG
      MENU LABEL FOG Server
      KERNEL undionly.kpxe
      APPEND 192.168.1.11

      posted in General Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Jaymes-Driver Well Yeah FOG is going to be my go to for OS X and Ubuntu builds. But I will have to stick with MDT and WDS deployment seeing we have a ton of different configuration I push out.

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Jaymes-Driver Yeah I’m going to segment the network and go a different route when i go into production. I just had to prove FOG server would work for our environment. And yes option 60 is being used for WDS. Thank you for all your help and @george1421 . I never noticed the port 4011 error until i captured the picture and then that lead me to checking server scope options.

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @george1421 Ok I just got much further removing option 60 from my DHCP server. I now get partclone and everything seems to be working now.

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Tom-Elliott
      Sorry for making that difficult, but yes the client IP, DHCP, and FOG server are on the same subnet

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @george1421 I do have a WDS/MDT server on the same test network. However I have the services disabled. Is their more I need to do? Can you even have both on the same network?

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Jaymes-Driver 0_1487000137753_20170213_102940.png

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Jaymes-Driver
      Windows server 2012 R2 is providing me with DHCP. Scope option 67 is providing me the bootfile name. Is that what you mean by " where did you make the changes to provide your pxeboot file information?"

      I see all a lot more lines below is everything i see.
      #!ipxe
      set fog-ip ip.of.fog.server
      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://ip.of.fog.server/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 3000 target && goto ${target}
      :fog.local
      chain -ar ${boot-url}/service/ipxe/grub.exe --config-file=“rootnoverify (hd0);chainloader +1” || goto MENU
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=ip.of.fog.server/fog/ consoleblank=0 rootfstype=ext4 loglevel=4
      imgfetch init_32.xz
      boot || goto MENU
      :fog.memtest
      kernel memdisk iso raw
      initrd memtest.bin
      boot || goto MENU
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=ip.of.fog.server/fog/ consoleblank=0 rootfstype=ext4 loglevel=4
      imgfetch init_32.xz
      boot || goto MENU
      :fog.reginput
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=ip.of.fog.server/fog/ consoleblank=0 rootfstype=ext4 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=ip.of.fog.server/fog/ consoleblank=0 rootfstype=ext4 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
      :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
      :fog.sysinfo
      kernel bzImage32 loglevel=4 initrd=init_32.xz root=/dev/ram0 rw ramdisk_size=127000 web=ip.of.fog.server/fog/ consoleblank=0 rootfstype=ext4 loglevel=4 mode=sysinfo
      imgfetch init_32.xz
      boot || goto MENU
      :bootme
      chain -ar http://ip.of.fog.server/fog/service/ipxe/boot.php##params ||
      goto MENU
      autoboot

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      @Jaymes-Driver
      This is literally my first workstation that I have tired. If i go to http://ip.of.fog.server/fog/service/ipxe/boot.php it returns #ipxe
      short cut of code
      #!ipxe
      set fog-ip ip.of.fog.server
      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

      posted in Windows Problems
      C
      cfsalyer
    • RE: Dell XPS 8700 PXE boot error

      I see the error when the workstation first boots to the NIC/PXE boot. I never get the fog boot menu.

      posted in Windows Problems
      C
      cfsalyer