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

    Problem with Windows 10 host not registering ...SVN 6476

    Scheduled Pinned Locked Moved Solved
    FOG Problems
    3
    16
    3.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.
    • H
      Hanz @Wayne Workman
      last edited by

      @Wayne-Workman only 1 server, and I looked under hostmac and hosts for the machine in question searching for both mac address and computer name respectively…nothing

      Wayne WorkmanW 1 Reply Last reply Reply Quote 0
      • Wayne WorkmanW
        Wayne Workman @Hanz
        last edited by

        @Hanz Is this problem host a laptop or desktop? What’s returned when you run getmac in the command prompt?

        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/

        Tom ElliottT H 2 Replies Last reply Reply Quote 0
        • Tom ElliottT
          Tom Elliott @Wayne Workman
          last edited by

          @Wayne-Workman I think the host is not registered at all, or the nic is associated to nothing now.

          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

          H 1 Reply Last reply Reply Quote 0
          • H
            Hanz @Wayne Workman
            last edited by

            @Wayne-Workman

            Physical Address    Transport Name
            =================== ==========================================================
            2C-76-8A-D9-23-9D   \Device\Tcpip_{B0246A16-2CAB-4755-8BA7-CD4E79B32290}
            N/A                 Hardware not present
            40-2C-F4-61-4D-D9   Media disconnected
            0A-00-27-00-00-00   \Device\Tcpip_{C4E2D3F3-AFF5-412D-9CCB-BABC0CC7B645}
            

            the top mac is the one assoc with ethernet and the one I tried to find in database

            1 Reply Last reply Reply Quote 0
            • H
              Hanz @Tom Elliott
              last edited by

              @Tom-Elliott Problem is when I try to add manually I get the response about duplicate mac addresses…so currently this machine is not registered after installing client. It won’t show under pending hosts either

              Wayne WorkmanW 1 Reply Last reply Reply Quote 0
              • Wayne WorkmanW
                Wayne Workman @Hanz
                last edited by

                @Hanz in MySQL, can you run this: select * from hostMAC where hmID = 0;

                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/

                H 1 Reply Last reply Reply Quote 0
                • H
                  Hanz @Wayne Workman
                  last edited by

                  @Wayne-Workman

                  Database changed
                  MariaDB [fog]> select * from hostMAC where hmID = 0;
                  Empty set (0.00 sec)
                  
                  Tom ElliottT 1 Reply Last reply Reply Quote 0
                  • Tom ElliottT
                    Tom Elliott @Hanz
                    last edited by

                    @Hanz said:

                    2C-76-8A-D9-23-9D

                    SELECT * from hostMAC where hmMAC IN ('2C:76:8A:D9:23:9D','40:2C:F4:61:4D:D9','0A:00:27:00:00:00')
                    

                    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

                    H 1 Reply Last reply Reply Quote 0
                    • H
                      Hanz @Tom Elliott
                      last edited by Hanz

                      @Tom-Elliott

                      Database changed
                      MariaDB [fog]> SELECT * from hostMAC where hmMAC IN ('2C:76:8A:D9:23:9D','40:2C:F4:61:4D:D9','0A:00:27:00:00:00')
                          -> 
                          -> ;
                      +---------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                      | hmID    | hmHostID | hmMAC             | hmDesc | hmPrimary | hmPending | hmIgnoreClient | hmIgnoreImaging |
                      +---------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                      | 2279392 |     1978 | 0a:00:27:00:00:00 |        |         0 |         0 |              0 |               0 |
                      +---------+----------+-------------------+--------+-----------+-----------+----------------+-----------------+
                      1 row in set (0.00 sec)
                      
                      
                      Tom ElliottT 1 Reply Last reply Reply Quote 0
                      • Tom ElliottT
                        Tom Elliott @Hanz
                        last edited by

                        @Hanz There’s the culprit.

                        Can you delete that particular entry?

                        DELETE FROM hostMAC where hmID=2279392;

                        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

                        H 1 Reply Last reply Reply Quote 0
                        • H
                          Hanz @Tom Elliott
                          last edited by Hanz

                          @Tom-Elliott yessir, sorry so long to get back to you, but that was it, and client registers normally now. I guess that’s the only interface I didn’t check for in database…Loopback I guess

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

                          209

                          Online

                          12.1k

                          Users

                          17.3k

                          Topics

                          155.4k

                          Posts
                          Copyright © 2012-2024 FOG Project