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

PXE advanced boot config file loc

Scheduled Pinned Locked Moved
General
5
14
3.7k
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.
  • J
    Joe Taylor
    last edited by Dec 18, 2014, 12:31 PM

    Hi,

    Where’s the config file for pxe boot?

    1 Reply Last reply Reply Quote 1
    • T
      Tom Elliott
      last edited by Dec 18, 2014, 12:32 PM

      For what?

      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
      • J
        Joe Taylor
        last edited by Dec 18, 2014, 12:36 PM

        Hi

        Its for the PXE boot advanced menu

        I followed something from your psot about bypassing pxe host registration and it came up with the MAC address invalid error.

        Its so that I can have a menu and select the images from menu rather than registering every time for all the machines

        1 Reply Last reply Reply Quote 0
        • J
          Joe Taylor
          last edited by Dec 18, 2014, 12:37 PM

          [url]http://fogproject.org/forum/threads/bypass-host-registration.11048/[/url]

          Going bakc to that post but I honestly can’t make the invalid MAC address error go away 😞

          1 Reply Last reply Reply Quote 0
          • T
            Tom Elliott
            last edited by Dec 18, 2014, 12:44 PM

            Well,

            I need info.

            For example, what fog are you running?

            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
            • J
              Joe Taylor
              last edited by Dec 18, 2014, 12:46 PM

              Its for fog version 1.2

              Current:

              :MENU
              menu
              item --gap Please Select one of the images below
              item fog.local Boot from hard disk
              item img1 Windows 7 x64 Home Premium
              item img2 Lenovo
              item return Return to main menu
              choose --default fog.local target && goto ${target}
              :fog.local
              sanboot --no-describe --drive 0x80 || goto MENU
              :img1
              kernel bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns=192.168.1.1 web=${fog-ip}/fog/ consoleblank=0 loglevel=4 type=down img=Windows7x64HP ftp=${fog-ip} imgType=n osid=5 storage=${fog-ip}:/mnt/sdc1/fog/images capone=1 imgFormat=1
              imgfetch init.xz
              boot || goto MENU
              :img2
              kernel bzImage root=/dev/ram0 rw ramdisk_size=127000 ip=dhcp dns=192.168.1.1 web=${fog-ip}/fog/ consoleblank=0 loglevel=4 type=down imgid=2 img=Lenovo ftp=${fog-ip} imgType=mpa osid=5 storage=${fog-ip}:/mnt/sdc1/fog/images capone=1 imgFormat=0
              imgfetch init.xz
              boot || goto MENU
              :return
              chain [url]http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=mac=00:00:00:00:00:00[/url] || goto MENU
              autoboot

              1 Reply Last reply Reply Quote 0
              • T
                Tom Elliott
                last edited by Dec 18, 2014, 12:58 PM

                So that’s in your advanced menu?

                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
                • T
                  Tom Elliott
                  last edited by Dec 18, 2014, 1:00 PM

                  [quote=“Joe Taylor, post: 40107, member: 27608”]
                  chain [url]http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=mac=00:00:00:00:00:00[/url] || goto MENU
                  autoboot[/quote]

                  The above line is wrong.

                  It should, literally be:
                  [code]chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} || goto MENU[/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
                  • J
                    Joe Taylor
                    last edited by Dec 18, 2014, 1:06 PM

                    Ahha perfect mate!

                    So when in the above fourm link posted (where you say oyu need to add the mac:0: etc to the system) is that to that image string?

                    1 Reply Last reply Reply Quote 0
                    • J
                      Joe Taylor
                      last edited by Dec 18, 2014, 1:07 PM

                      All is now working perfect!

                      Thanks Tom!! 🙂
                      Is there any way for me to buy you a pint (of beer) :3

                      1 Reply Last reply Reply Quote 0
                      • W
                        Wolfbane8653 Developer
                        last edited by Dec 18, 2014, 1:49 PM

                        [url]http://www.fogproject.org/wiki/index.php/Support_FOG#Contributing[/url] to the FOG Project

                        See “[B][SIZE=13px][FONT=sans-serif][COLOR=#000000]Buy us a Beer!”[/COLOR][/FONT][/SIZE][/B]

                        1 Reply Last reply Reply Quote 0
                        • C
                          ch3i Moderator
                          last edited by Dec 18, 2014, 3:02 PM

                          [quote=“Wolfbane8653, post: 40112, member: 3362”][url]http://www.fogproject.org/wiki/index.php/Support_FOG#Contributing[/url] to the FOG Project

                          See “[B][FONT=sans-serif][COLOR=#000000]Buy us a Beer!”[/COLOR][/FONT][/B][/quote]

                          Not sure you really buy a beer with the donation… o_O

                          1 Reply Last reply Reply Quote 0
                          • J
                            Junkhacker Developer
                            last edited by Dec 18, 2014, 3:16 PM

                            [quote=“ch3i, post: 40117, member: 2513”]Not sure you really buy a beer with the donation… o_O[/quote]

                            the money can potentially buy a beer (but most likely will be used to pay for server hosting or other expenses for the project incurs)

                            signature:
                            Junkhacker
                            We are here to help you. If you are unresponsive to our questions, don't expect us to be responsive to yours.

                            1 Reply Last reply Reply Quote 0
                            • C
                              ch3i Moderator
                              last edited by Dec 18, 2014, 3:40 PM

                              [quote=“Junkhacker, post: 40118, member: 21583”]the money can potentially buy a beer (but most likely will be used to pay for server hosting or other expenses for the project incurs)[/quote]

                              🙂

                              1 Reply Last reply Reply Quote 0
                              • 1 / 1
                              1 / 1
                              • First post
                                13/14
                                Last post

                              164

                              Online

                              12.0k

                              Users

                              17.3k

                              Topics

                              155.2k

                              Posts
                              Copyright © 2012-2024 FOG Project