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

PXE-M0F: Exiting Broadcom PXE ROM.

Scheduled Pinned Locked Moved
FOG Problems
4
25
12.6k
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.
  • W
    Wayne Workman
    last edited by Apr 8, 2015, 10:31 PM

    According to Wireshark, my FOG server’s dnsmasq service only sends out one packet…

    [IMG]http://s29.postimg.org/56b9s2qp3/Screenshot_from_2015_04_08_17_30_15.png[/IMG]

    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!
    Daily Clean Installation Results:
    https://fogtesting.fogproject.us/
    FOG Reporting:
    https://fog-external-reporting-results.fogproject.us/

    1 Reply Last reply Reply Quote 0
    • W
      Wayne Workman
      last edited by Apr 8, 2015, 10:41 PM

      In the ltsp.conf file,

      I am eyeballing this line:

      [CODE]dhcp-option=vendor:PXEClient,6,2b[/CODE]

      I don’t think it’s right… How can I bypass it so that it just gives undionly.kpxe to everything?

      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!
      Daily Clean Installation Results:
      https://fogtesting.fogproject.us/
      FOG Reporting:
      https://fog-external-reporting-results.fogproject.us/

      1 Reply Last reply Reply Quote 0
      • S
        Sebastian Roth Moderator
        last edited by Apr 9, 2015, 1:59 AM

        DHCP offers are both missing ‘next-server’… but your FOG server 10.0.0.3 should provide this information! I think you kind of mis-configured dnsmasq a little.
        [CODE]dhcp-boot=undionly.kpxe,10.0.0.3[/CODE]
        and completely remove the dhcp-option 66 line…

        Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

        Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

        1 Reply Last reply Reply Quote 0
        • W
          Wayne Workman
          last edited by Apr 9, 2015, 2:55 AM

          Still no change, but there was a change in traffic. tcpdump said 13 or so packets were captured, but the filter only stored 5 of them. I’ve also reboot the FOG server too, and tried again.

          New ltsp.conf file:
          [CODE]port=0
          log-dhcp
          tftp-root=/tftpboot
          dhcp-boot=undionly.kpxe,10.0.0.3
          dhcp-option=17,/images
          dhcp-option=vendor:PXEClient,6,2b
          dhcp-no-override
          pxe-prompt=“Press F8 for boot menu”, 3
          pxe-service=X86PC, “Boot from network” undionly
          pxe-service=X86PC, “Boot from local hard disk”, 0
          dhcp-range=10.0.0.3,proxy[/CODE]

          [url=“/_imported_xf_attachments/1/1854_issue.pcap.zip?:”]issue.pcap.zip[/url]

          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!
          Daily Clean Installation Results:
          https://fogtesting.fogproject.us/
          FOG Reporting:
          https://fog-external-reporting-results.fogproject.us/

          1 Reply Last reply Reply Quote 0
          • T
            Tom Elliott
            last edited by Apr 9, 2015, 8:20 AM

            Because the boot file is undionly.kkpxe I believe you need to also have undionly.kkpxe.0 in the tftpboot folder.

            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! Get in contact with me (chat bubble in the top right corner) if you want to join in.

            Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

            Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

            1 Reply Last reply Reply Quote 0
            • W
              Wayne Workman
              last edited by Apr 9, 2015, 12:13 PM

              [quote=“Tom Elliott, post: 45204, member: 7271”]Because the boot file is undionly.kkpxe I believe you need to also have undionly.kkpxe.0 in the tftpboot folder.[/quote]

              undionly.kkpxe.0 ?? or cp undionly.kkpxe undionly.0 ?
              I thought I was using undionly.[B][U]kpxe[/U][/B] ?

              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!
              Daily Clean Installation Results:
              https://fogtesting.fogproject.us/
              FOG Reporting:
              https://fog-external-reporting-results.fogproject.us/

              1 Reply Last reply Reply Quote 0
              • J
                Jaymes Driver Developer
                last edited by Apr 9, 2015, 12:16 PM

                [quote=“Wayne Workman, post: 45215, member: 28155”]undionly.kkpxe.0 ?? or cp undionly.kkpxe undionly.0 ?
                I thought I was using undionly.[B][U]kpxe[/U][/B] ?[/quote]

                Dnsmasq adds a .0 to the file name, I never really understood why, but adding a symlink for undionly.0 seems to resolve the issue for using DNSMASQ.

                This is explained in the documentation on the dnsmasq set up page.

                [quote]
                Make a symlink for the undionly.kpxe file so dnsmasq can find it.
                [code]cd /tftpboot
                sudo ln -s undionly.kpxe undionly.0[/code]
                source:[url]http://fogproject.org/wiki/index.php/Using_FOG_with_an_unmodifiable_DHCP_server/_Using_FOG_with_no_DHCP_server#DNSMASQ_settings_for_iPXE[/url]
                [/quote]

                of course you don’t have to use the Undionly.kpxe file, you can use Ipxe.kpxe or any of the variants, but you still need to include a symlink for the .0

                I noticed this when we moved from pxelinux.0 (look there’s that .0 again!!!) to the Undionly.kpxe platform for iPXE in 0.33b. I could not get my boot file on my machine during pxe boot, in doing some research (I believe I found the information in wireshark) I found that the machines were looking for Undionly.0 instead of Undionly.kpxe.

                I added a symlink for udionly.kpxe to undionly.0 and the problem resolved itself.

                I started by using the pxelinux.0 to chainload the undionly.kpxe file until I understood the .0 being appended to the file name.
                The Thread where I discuss this issue and my notes on resolution can be found here:[url]http://fogproject.org/forum/threads/dnsmasq-help-for-ipxe-stuff.10222/[/url]

                WARNING TO USERS: My comments are written completely devoid of emotion, do not mistake my concise to the point manner as a personal insult or attack.

                1 Reply Last reply Reply Quote 0
                • T
                  Tom Elliott
                  last edited by Apr 9, 2015, 12:31 PM

                  Try changing this:
                  [code]port=0
                  log-dhcp
                  tftp-root=/tftpboot
                  dhcp-boot=undionly.kpxe
                  dhcp-option=17,/images
                  dhcp-option=vendor:PXEClient,6,2b
                  dhcp-no-override
                  pxe-prompt=“Press F8 for boot menu”, 3
                  pxe-service=X86PC, “Boot from network” undionly
                  pxe-service=X86PC, “Boot from local hard disk”, 0
                  dhcp-range=10.0.0.3,proxy
                  dhcp-option=66,“10.0.0.3”[/code]

                  TO THIS:
                  [code]port=0
                  log-dhcp
                  tftp-root=/tftpboot
                  dhcp-boot=undionly.0,10.0.0.3,10.0.0.3
                  dhcp-option=17,/images
                  dhcp-option=vendor:PXEClient,6,2b
                  dhcp-no-override
                  pxe-prompt=“Press F8 for boot menu”, 3
                  pxe-service=X86PC, “Boot from network”, undionly
                  pxe-service=X86PC, “Boot from local hard disk”, 0
                  dhcp-range=10.0.0.3,proxy[/code]

                  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! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                  Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                  Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                  1 Reply Last reply Reply Quote 0
                  • W
                    Wayne Workman
                    last edited by Apr 9, 2015, 10:55 PM

                    Made the change to the file, wow!

                    However, it still doesn’t boot… I’ve tried the Optiplex 745 and my laptop, which is a Dell D620.

                    Here’s what it does: [media=youtube]g1mQa-18ISQ[/media]

                    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!
                    Daily Clean Installation Results:
                    https://fogtesting.fogproject.us/
                    FOG Reporting:
                    https://fog-external-reporting-results.fogproject.us/

                    1 Reply Last reply Reply Quote 0
                    • W
                      Wayne Workman
                      last edited by Apr 9, 2015, 11:20 PM

                      Going to try the other files in a bit…

                      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!
                      Daily Clean Installation Results:
                      https://fogtesting.fogproject.us/
                      FOG Reporting:
                      https://fog-external-reporting-results.fogproject.us/

                      1 Reply Last reply Reply Quote 0
                      • T
                        Tom Elliott
                        last edited by Apr 9, 2015, 11:23 PM

                        What’s the output of the browser if you type in:

                        [url]http://10.0.0.3/fog/service/ipxe/boot.php[/url]

                        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! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                        Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                        Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                        1 Reply Last reply Reply Quote 0
                        • W
                          Wayne Workman
                          last edited by Apr 10, 2015, 2:50 AM

                          [quote=“Tom Elliott, post: 45278, member: 7271”]What’s the output of the browser if you type in:

                          [url]http://10.0.0.3/fog/service/ipxe/boot.php[/url][/quote]

                          [CODE]
                          Forbidden

                          You don’t have permission to access /fog/service/ipxe/boot.php on this server.
                          [/CODE]

                          I did this:
                          [CODE]chmod -R 755 /var/www/html/fog[/CODE]

                          And now that link gives output.

                          and I GET THE FOG MENU!!! WOOT WOOT!!

                          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!
                          Daily Clean Installation Results:
                          https://fogtesting.fogproject.us/
                          FOG Reporting:
                          https://fog-external-reporting-results.fogproject.us/

                          1 Reply Last reply Reply Quote 0
                          • W
                            Wayne Workman
                            last edited by Apr 10, 2015, 3:32 AM

                            Currently uploading an image. 🙂

                            EDIT: Image uploaded fine.

                            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!
                            Daily Clean Installation Results:
                            https://fogtesting.fogproject.us/
                            FOG Reporting:
                            https://fog-external-reporting-results.fogproject.us/

                            1 Reply Last reply Reply Quote 0
                            • W
                              Wayne Workman
                              last edited by Apr 10, 2015, 12:56 PM

                              So why were the permissions on that directory wrong? (for RedHat installation)
                              Can we get that fixed in the next revision?

                              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!
                              Daily Clean Installation Results:
                              https://fogtesting.fogproject.us/
                              FOG Reporting:
                              https://fog-external-reporting-results.fogproject.us/

                              1 Reply Last reply Reply Quote 0
                              • S
                                Sebastian Roth Moderator
                                last edited by Apr 11, 2015, 6:19 AM

                                Are you sure permissions were wrong after a clean install?? Can you reproduce this by re-installing it…

                                Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                1 Reply Last reply Reply Quote 0
                                • W
                                  Wayne Workman
                                  last edited by Apr 11, 2015, 2:33 PM

                                  I worked on re-installing the OS and FOG last night. The permissions seem to be correct this time…

                                  If I had to guess, I’d say that Fedora OS updates are to blame… Because this time around, the OS updates were the first thing I did.

                                  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!
                                  Daily Clean Installation Results:
                                  https://fogtesting.fogproject.us/
                                  FOG Reporting:
                                  https://fog-external-reporting-results.fogproject.us/

                                  1 Reply Last reply Reply Quote 0
                                  • S
                                    Sebastian Roth Moderator
                                    last edited by Apr 12, 2015, 6:40 AM

                                    I doubt that OS update is changing file permissions in /tftpboot or /var/www but hey, you never know… 😄

                                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                    1 Reply Last reply Reply Quote 0
                                    • 1
                                    • 2
                                    • 1 / 2
                                    1 / 2
                                    • First post
                                      18/25
                                      Last post

                                    224

                                    Online

                                    12.2k

                                    Users

                                    17.3k

                                    Topics

                                    155.5k

                                    Posts
                                    Copyright © 2012-2024 FOG Project