• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Windows 7 and Windows 10 simultaneously

Scheduled Pinned Locked Moved Unsolved
FOG Problems
2
17
1.9k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G
    george1421 Moderator @gnavarrete
    last edited by Apr 5, 2018, 5:44 PM

    @gnavarrete The version of dd-wrt is too old to support dnsmasq 2.76. So using your fog server is the next steps.

    What version of linux do you have on your fog server?

    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

    G 1 Reply Last reply Apr 5, 2018, 6:14 PM Reply Quote 0
    • G
      gnavarrete @george1421
      last edited by Apr 5, 2018, 6:14 PM

      @george1421 I have Ubuntu 14.04 running on the fog server.

      G 1 Reply Last reply Apr 5, 2018, 6:20 PM Reply Quote 0
      • G
        george1421 Moderator @gnavarrete
        last edited by Apr 5, 2018, 6:20 PM

        @gnavarrete Not the OS I wanted to hear. You can try to see if 2.76 is available in your ubuntu repository, but I double it. You may have to compile your own: https://forums.fogproject.org/topic/8725/compiling-dnsmasq-2-76-if-you-need-uefi-support

        Edit: I just checked and you need to be running ubuntu 17.04 to have native support for the version you need: https://usn.ubuntu.com/3430-1/
        So self compiling is your only option if you want dynamic support between uefi and bios systems. If you have a windows 2012 server, that supports dynamic dhcp settings too.

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

        G 1 Reply Last reply Apr 5, 2018, 6:46 PM Reply Quote 0
        • G
          gnavarrete @george1421
          last edited by Apr 5, 2018, 6:46 PM

          @george1421 I was reading through your post (very nice post by the way). The only thing running on that server is Fog I wouldn’t mind upgrading the version to get the 2.76 v available in the repository.

          G 1 Reply Last reply Apr 5, 2018, 7:22 PM Reply Quote 0
          • G
            george1421 Moderator @gnavarrete
            last edited by Apr 5, 2018, 7:22 PM

            @gnavarrete I’m only here to provide options. Do what is the best for you and your company. I agree with moving off 14.04 since its past EOL anyway.

            Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

            G 1 Reply Last reply Apr 5, 2018, 7:34 PM Reply Quote 1
            • G
              gnavarrete @george1421
              last edited by Apr 5, 2018, 7:34 PM

              @george1421 Thanks for all your help. I think I am going to install the new version of Ubuntu on another machine, install fog from scratch and mess around with the DNSMasq to see if I can get it to dynamically shift. Is there any recent posts that you may have on how to achieve this dynamical shifting?

              G 1 Reply Last reply Apr 5, 2018, 7:54 PM Reply Quote 0
              • G
                george1421 Moderator @gnavarrete
                last edited by Apr 5, 2018, 7:54 PM

                @gnavarrete I think you have posted the best path forward. Create a second FOG server, copy the images over and export and import the image meta data and hosts. https://wiki.fogproject.org/wiki/index.php?title=Migrate_FOG

                as for the dnsmasq, the link I provided before has a working ltsp.conf file. I’ll repost it here. Just don’t forget to change the <fog_server_ip> to the fog server real IP address.

                # Don't function as a DNS server:
                port=0
                
                # Log lots of extra information about DHCP transactions.
                log-dhcp
                
                # Set the root directory for files available via FTP.
                tftp-root=/tftpboot
                
                # The boot filename, Server name, Server Ip Address
                dhcp-boot=undionly.kpxe,,<fog_server_IP>
                
                # Disable re-use of the DHCP servername and filename fields as extra
                # option space. That's to avoid confusing some old or broken DHCP clients.
                dhcp-no-override
                
                # inspect the vendor class string and match the text to set the tag
                dhcp-vendorclass=BIOS,PXEClient:Arch:00000
                dhcp-vendorclass=UEFI32,PXEClient:Arch:00006
                dhcp-vendorclass=UEFI,PXEClient:Arch:00007
                dhcp-vendorclass=UEFI64,PXEClient:Arch:00009
                
                # Set the boot file name based on the matching tag from the vendor class (above)
                dhcp-boot=net:UEFI32,i386-efi/ipxe.efi,,<fog_server_IP>
                dhcp-boot=net:UEFI,ipxe.efi,,<fog_server_IP>
                dhcp-boot=net:UEFI64,ipxe.efi,,<fog_server_IP>
                
                # PXE menu.  The first part is the text displayed to the user.  The second is the timeout, in seconds.
                pxe-prompt="Booting FOG Client", 1
                
                # The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
                # Intel_Lean_Client, IA32_EFI, BC_EFI, Xscale_EFI and X86-64_EFI
                # This option is first and will be the default if there is no input from the user.
                pxe-service=X86PC, "Boot to FOG", undionly.kpxe
                pxe-service=X86-64_EFI, "Boot to FOG UEFI", ipxe.efi
                pxe-service=BC_EFI, "Boot to FOG UEFI PXE-BC", ipxe.efi
                
                dhcp-range=<fog_server_ip>,proxy
                

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                G 1 Reply Last reply Apr 5, 2018, 7:59 PM Reply Quote 1
                • G
                  gnavarrete @george1421
                  last edited by Apr 5, 2018, 7:59 PM

                  @george1421 said in Windows 7 and Windows 10 simultaneously:

                  dhcp-boot=undionly.kpxe

                  Sorry this might be an obvious question but I just want to make sure. I am guessing that I can change the “undionly.kpxe” instances to “undionly.kkpxe” since that is what is currently working for all of our windows 7 machines right?

                  G 1 Reply Last reply Apr 5, 2018, 8:25 PM Reply Quote 0
                  • G
                    george1421 Moderator @gnavarrete
                    last edited by Apr 5, 2018, 8:25 PM

                    @gnavarrete Yes you can. You can use any of the bios boot kernels in the bios spot and the uefi ones in the uefi spot. If you need certain boot kernels for certain hardware, we can do that too. But you need to have the right version of dnsmasq to start.

                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                    G 1 Reply Last reply Apr 6, 2018, 12:24 PM Reply Quote 0
                    • G
                      gnavarrete @george1421
                      last edited by Apr 6, 2018, 12:24 PM

                      @george1421 Thank you for all the info I am going to start working on this.

                      1 Reply Last reply Reply Quote 0
                      • 1 / 1
                      1 / 1
                      • First post
                        17/17
                        Last post

                      185

                      Online

                      12.0k

                      Users

                      17.3k

                      Topics

                      155.2k

                      Posts
                      Copyright © 2012-2024 FOG Project