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

    7156 Uefi pxe DHCP error

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    3
    59
    20.1k
    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.
    • george1421G
      george1421 Moderator
      last edited by george1421

      Does this really work like you think?

      dhcp-match=set:efi-x86_64,option:client-arch,7
      dhcp-boot=tag:efi-x86_64,intel.efi,,192.168.1.109
      

      and

      dhcp-match=set:efi-x86_64,option:client-arch,7
      dhcp-boot=tag:efi-x86_64,realtek.efi,,192.168.1.109
      

      Depending on how dnsmasq processes its config file I can see the second entry might overwrite the first entry in the dnsmasq configuration in memory. OR if the list is processed in order then I can see the second match never being reached.

      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!

      1 Reply Last reply Reply Quote 0
      • D
        dureal99d @george1421
        last edited by

        @george1421 do you have a how to compile your own dnsmasq?

        george1421G 1 Reply Last reply Reply Quote 0
        • george1421G
          george1421 Moderator @dureal99d
          last edited by

          @dureal99d I don’t have a how-to yet for compiling dnsmasq. I was able to compile it on a Raspberry Pi running a debian variant without any issues (full disclosure I’ve been compiling applications in linux for a few years so I already had the foundation stuff under control).

          Its not hard to do. Will you do the following on the FOG server console.

          1. Identify the path to dnsmasq
            which dnsmasq
          2. See if you have the development tools loaded
            gcc --version
            hopefully you’ll get the version line.

          I needed these libraries for debian, I might guess ubuntu is similar.

          sudo apt-get update
          sudo apt-get install -y libdbus-1-dev libnetfilter-conntrack-dev libidn11-dev nettle-dev libval-dev dnssec-tools
          

          I’ll tell you what. I just reloaded Mint 18 on my wife’s computer which is based on ubuntu 16.04. Let me work up a rough guide with that system. My laptop is running Zorin which is based on ubuntu 15.10 (I think so that might work, but I’ll use my wife’s to be sure).

          I have been working with dnsmasq config setting since I saw your post this AM. I’ve come up with some interesting things and something that haven’t worked as I expected. Once I have a positive solution for one of my issues I’ll write up a tutorial on that info 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!

          D 1 Reply Last reply Reply Quote 1
          • D
            dureal99d @george1421
            last edited by

            @george1421 Cool ill be looking forward to that!!!

            george1421G 1 Reply Last reply Reply Quote 0
            • george1421G
              george1421 Moderator @dureal99d
              last edited by

              @dureal99d I actually just completed the first phase over in the tutorials

              https://forums.fogproject.org/topic/8725/compiling-dnsmasq-2-76-if-you-need-uefi-support

              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!

              D 1 Reply Last reply Reply Quote 1
              • D
                dureal99d @george1421
                last edited by

                @george1421 I will get to it soon as I get home from work!!! as always I will report back!!!

                D 1 Reply Last reply Reply Quote 0
                • D
                  dureal99d @dureal99d
                  last edited by

                  @george1421 if I am reading right this will work with your router as the dhcp

                  george1421G 1 Reply Last reply Reply Quote 0
                  • george1421G
                    george1421 Moderator @dureal99d
                    last edited by

                    @dureal99d Sorry I was testing some advanced dnsmasq configs so I couldn’t respond right away. Yes my current test environment is with a soho home router (WRT54) as the dhcp server and my FOG-Pi server (Pi2b running Raspbian) as the dnsmasq 2.76 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!

                    D 1 Reply Last reply Reply Quote 1
                    • D
                      dureal99d @george1421
                      last edited by dureal99d

                      @george1421 this what I get when I try to restart the service

                      sudo service dnsmasq restart
                      Failed to restart dnsmasq.service: Unit dnsmasq.service not found.
                      

                      yet when I run this command ““dnsmasq -v”” I get this

                      Dnsmasq version 2.76  Copyright (c) 2000-2016 Simon Kelley
                      Compile time options: IPv6 GNU-getopt DBus no-i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify
                      
                      This software comes with ABSOLUTELY NO WARRANTY.
                      Dnsmasq is free software, and you are welcome to redistribute it
                      under the terms of the GNU General Public License, version 2 or 3.
                      
                      
                      george1421G 1 Reply Last reply Reply Quote 0
                      • george1421G
                        george1421 Moderator @dureal99d
                        last edited by

                        @dureal99d Did you remember to install your distribution’s dnsmasq package first? If so the service name may not be called dnsmasq since it appears that Ubuntu 16 looks like its systemd based. A quick check is to just reboot the computer. Once its back up then key in ps aux|grep dnsmasq to see if the dnsmasq service is running in memory. I need to figure out what the proper systemd restart command is.

                        [Edit] According to this github page: https://gist.github.com/magnetikonline/6236150

                        # for Ubuntu 16.04LTS
                        $ sudo systemctl restart NetworkManager
                        
                        # for Ubuntu 14.04LTS
                        $ sudo restart network-manager
                        

                        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!

                        D 1 Reply Last reply Reply Quote 0
                        • D
                          dureal99d @george1421
                          last edited by

                          @george1421 I did not install dnsmasq. I will redo all the steps from scratch. I will install my distros dnsmasq first, then I will do the steps and get back to you.

                          george1421G 1 Reply Last reply Reply Quote 0
                          • george1421G
                            george1421 Moderator @dureal99d
                            last edited by

                            @dureal99d OK just install your distro’s dnsmasq version then just pop back to the directory where you built dnsmasq and just key in sudo make install and it should see that the binary has already been created and just copy over the compiled version. But did the compile right since it was installed and reported the right version when the command was run.

                            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!

                            D 3 Replies Last reply Reply Quote 0
                            • D
                              dureal99d @george1421
                              last edited by

                              @george1421 ok I’m waiting on my machine to boot.

                              1 Reply Last reply Reply Quote 0
                              • D
                                dureal99d @george1421
                                last edited by

                                @george1421

                                make[1]: Entering directory '/home/dureal99d/dnsmasq-2.76/src'
                                make[1]: 'dnsmasq' is up to date.
                                make[1]: Leaving directory '/home/dureal99d/dnsmasq-2.76/src'
                                install -d /usr/sbin -d /usr/share/man/man8
                                install -m 644 man/dnsmasq.8 /usr/share/man/man8 
                                install -m 755 src/dnsmasq /usr/sbin
                                
                                george1421G 1 Reply Last reply Reply Quote 0
                                • george1421G
                                  george1421 Moderator @dureal99d
                                  last edited by

                                  @dureal99d Yes, that is expected. It says the binary you complied is up to date and just recopied the files to their destination location. So dnsmasq -v should show that 2.76 is installed (hope).

                                  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!

                                  D 1 Reply Last reply Reply Quote 0
                                  • D
                                    dureal99d @george1421
                                    last edited by

                                    @george1421

                                    the result of running command ps aux|grep dnsmasq

                                    nobody    1467  0.0  0.0  47864  3728 ?        S    07:51   0:00 /usr/sbin/dnsmasq --no-resolv --keep-in-foreground --no-hosts --bind-interfaces --pid-file=/var/run/NetworkManager/dnsmasq.pid --listen-address=127.0.1.1 --cache-size=0 --conf-file=/dev/null --proxy-dnssec --enable-dbus=org.freedesktop.NetworkManager.dnsmasq --conf-dir=/etc/NetworkManager/dnsmasq.d
                                    dureal9+  5503  0.0  0.0  14224   972 pts/5    S+   08:00   0:00 grep --color=auto dnsmasq
                                    
                                    1 Reply Last reply Reply Quote 1
                                    • D
                                      dureal99d @george1421
                                      last edited by

                                      @george1421 yes the command shows

                                      Dnsmasq version 2.76  Copyright (c) 2000-2016 Simon Kelley
                                      Compile time options: IPv6 GNU-getopt DBus no-i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify
                                      
                                      This software comes with ABSOLUTELY NO WARRANTY.
                                      Dnsmasq is free software, and you are welcome to redistribute it
                                      under the terms of the GNU General Public License, version 2 or 3.```
                                      D george1421G 2 Replies Last reply Reply Quote 0
                                      • D
                                        dureal99d @dureal99d
                                        last edited by

                                        @george1421 to edit this file what do I type

                                        george1421G 1 Reply Last reply Reply Quote 0
                                        • george1421G
                                          george1421 Moderator @dureal99d
                                          last edited by

                                          @dureal99d OK then issue the network manager restart that is below. Then (at least on my Pi) inspect the /var/log/syslog file way at the bottom. You should see the startup of the dnsmasq service. Confirm the version number there is showing 2.76. If that is the case then you have successfully updated your dnsmasq to 2.76.

                                          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!

                                          1 Reply Last reply Reply Quote 0
                                          • george1421G
                                            george1421 Moderator @dureal99d
                                            last edited by

                                            @dureal99d said in 7156 Uefi pxe DHCP error:

                                            @george1421 to edit this file what do I type

                                            ?? File you need to edit ??

                                            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!

                                            D 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 1 / 3
                                            • First post
                                              Last post

                                            152

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project