• FOG Multicast Manager creating zombie processes. How to fix?

    Unsolved FOG Problems
    1
    0 Votes
    1 Posts
    18 Views
    No one has replied
  • FOG Multicast Manager creating zombie processes. How to fix?

    Unsolved Linux Problems
    1
    0 Votes
    1 Posts
    9 Views
    No one has replied
  • Uploading an image to a host that has a stored Windows 11 Pro key

    Unsolved FOG Problems
    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • FOG Multicast on different VLANs

    Unsolved FOG Problems
    4
    0 Votes
    4 Posts
    54 Views
    george1421G

    @sega said in FOG Multicast on different VLANs:

    So some people already tried it?

    Yes and so have I. You would need some way to dynamically change the network adapter defined in the global FOG settings to change the network adapter. You might also need to change a file called /tftpboot/default.ipxe to point to different interfaces. You might be able to get around this by setting up multiple tftp servers on the fog server, where each tftp server bound to a different interface and had a different home directory, that would be more of a long term change. And then you need to work out a way to update the imaging network interface in the fog settings depending on what interface you wanted to image using. There may be more crafty ways about doing this, but this is just off the top of my head.

  • FOG - Label Print....

    Unsolved FOG Problems
    2
    0 Votes
    2 Posts
    41 Views
    george1421G

    @ecoele I can say this option will not probably be added by the developers since its such a niche or one off requirement. But I’m not speaking on behalf of the developers, I’m just stating my opinion. Its up to them to decide if a feature request has merit.

    But fog being opensource its free for you to modify to your needs.

    What I can tell you that there are several user defined fields you are free to add whatever data you want. On the database side I think the fields are called user1 and user2.

    The second part is that FOG’s database runs on mysql (mariadb). This is much like any other sql server. If you have a windows computer and the mysql odbc driver installed you can query the fog database from a reporting writing tool running on windows. From there you can print labels, etc. You could do something as an excel macro to query mysql on the fog server.

    Again on the mysql server, you could program something on the fog server in either python or php to extract the data from mysql.

  • Wrong target device

    Unsolved FOG Problems
    4
    0 Votes
    4 Posts
    52 Views
    Tom ElliottT

    @Floppyrub The code exists in the FOS system (when you boot a machine for a task, not on your server)

  • Boot PXE on iMac 14.3 (catalina)

    Unsolved Mac Problems
    1
    0 Votes
    1 Posts
    54 Views
    No one has replied
  • rocky linux 9.6 quirks & php 8

    Unsolved Bug Reports
    4
    0 Votes
    4 Posts
    111 Views
    Tom ElliottT

    @mrowand The whole point of the checkAuthAndCSRF is to prevent unauthorized access. Based on the message I’m seeing, the 403 forbidden is happening because it’s crossing origin to get the data or the CSRF token isn’t passing correctly:

    Here’s the code that validates:

    // Optional defense-in-depth: Origin/Referer check for state-changing requests public static function checkOrigin(array $allowedOrigins): void { $method = strtoupper($_SERVER['REQUEST_METHOD'] ?? 'GET'); if (!in_array($method, ['POST','PUT','PATCH','DELETE'], true)) { return; } $origin = $_SERVER['HTTP_ORIGIN'] ?? null; $referer = $_SERVER['HTTP_REFERER'] ?? null; if ($origin) { foreach ($allowedOrigins as $allowed) { if (stripos($origin, $allowed) === 0) { return; } } http_response_code(403); echo _('Forbidden (disallowed Origin)'); exit; } elseif ($referer) { foreach ($allowedOrigins as $allowed) { if (stripos($referer, $allowed) === 0) { return; } } http_response_code(403); echo _('Forbidden (disallowed Referer)'); exit; } // If neither header is present, you can decide to be strict or lenient. // Often lenient to avoid breaking weird client setups. }

    I suspect your console has more information leading to the specific error that was hit.

    ultimately the code is working as expected and there’s something in your environment causing the issue. Now, to be fair, you said you installed Stable, and Dev-branch has a fix of which I admit I missed.

    If you’re willing/able to install the dev-branch I suspect you’ll see this is working much better.

  • Export image doesn't seem to work anymore

    Unsolved FOG Problems
    2
    0 Votes
    2 Posts
    100 Views
    Tom ElliottT

    @boombasstic This is known and will be fixed automatically on the 15th, but please if you need to switch to the dev-branch and install it. Then you should be able to export reports.

  • Dell OptiPlex 3000 Thin Client

    Unsolved Hardware Compatibility
    5
    0 Votes
    5 Posts
    158 Views
    george1421G

    @phant0mbot said in Dell OptiPlex 3000 Thin Client:

    have tried both SAN and GRUB exit options

    boot loader == snponly.efi

    These are in contradiction with each other. SAN boot and Grub are bios boot methods. snponly.efi is a uefi boot loader. Since you are getting into the fog iPXE menu we can assume the hardware IS uefi based since it is booting snp.efi. Try a uefi exit mode of rEFInd (refind) to see if that will boot from the hard drive. The default value can be set globally in the fog configuration->fog settings page. Don’t force a bios attempted boot from a uefi booted computer, that never works.

  • How do i add more storage space to my Fog Storage repository

    Unsolved Linux Problems
    2
    0 Votes
    2 Posts
    406 Views
    george1421G

    @Jchinn412 The answer is it depends on how you have your disk structure setup

    Post the results of these two commands.

    lsblk
    df -h

    It maybe easy or harder (but not impossible) depending on how you have the disk created.

  • Report Download

    Unsolved FOG Problems
    5
    0 Votes
    5 Posts
    252 Views
    Tom ElliottT

    @ecoele The fact that dev-branch is in 1700’s this informatino seems to indicate your’e still running the latest stable.

    Once you switch to dev-branch you need to pull in the changes:

    cd /your/path/to/fogproject git checkout dev-branch git pull cd bin sudo ./installfog.sh -y

    Should get you installed.

    You may also need to (from the browser) do a “CTRL + SHIFT + R” to do whats called a hard refresh in the browser to get all the latest/new javascript information.

  • [Problem] Storage Node connection issues after updating to FOG 1.6

    Unsolved Bug Reports
    5
    0 Votes
    5 Posts
    632 Views
    F

    @Tom-Elliott Thanks, going to switch back to 1.6 very soon.

  • Stuck at resizing after successful capture.

    Unsolved FOG Problems
    5
    0 Votes
    5 Posts
    3k Views
    Tom ElliottT

    @Fog_Newb Yep, it’s as I suspected:

    The Line:

    Subsystem sftp /usr/lib/openssh/sftp-server

    should be changed to:

    Subsystem sftp internal-sftp

    Then restart ssh services: systemctl restart sshd

    Then your Storage Node testing should succeed!

  • Issue with Default Login Credentials

    Unsolved FOG Problems
    2
    0 Votes
    2 Posts
    467 Views
    Tom ElliottT

    @rhysb92 We need more information.

    i ask because I have just built a new VM, and installed dev-branch/stable and it completed and I was indeed able to login with the fog/password combination where i then changed the PW.

    So I feel like we’re missing some key information.

  • Issue with new certificate

    Unsolved FOG Problems
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • image coming up blank

    Unsolved FOG Problems
    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • 0 Votes
    3 Posts
    295 Views
    F

    Thank you for the information. I used a bare metal machine. I started with a VM but then just used a old pc. I tried it with Fedora then Ubuntu but did not have any luck. I did not get any errors when installing with the install script.

    I will take a look at the information you gave me and see if I can get anything working.

  • fog server failing at updating database

    Unsolved FOG Problems
    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • Linux UFW Profile for FOG Questions

    Unsolved Linux Problems
    2
    0 Votes
    2 Posts
    194 Views
    AUTH IT CenterA

    @Petrushka hello!!

    In our firewalld rules we have

    services: - ftp - http - mountd - nfs - rpc-bind - tftp ports: - { port: 20048, proto: tcp } # nfs - { port: 20048, proto: udp } # nfs - { port: "35350-36350", proto: udp } # tftp - { port: "49512-65532", proto: udp } # multicast