Welcome to the community forums for Theopenem. All responses are provided by other users that wish to help out. Theopenem will not respond to these posts. If you require more assistance than what the community can provide, we offer various paid support options.

iVentoy - alternative to tftpd32 PXE


  • Just adding a link for iVentoy, which allows you to boot TOEM WIE and LIE ISOs together with many other via its PXE server.
    https://www.iventoy.com/en/index.html


  • @eruthon
    how do you set it up, it did not work for me. it would not load the iso file.


  • @daodio2
    First disable the tftp32 on TOEM server.
    Then you need to set up your network depending on your needs (BIOS, UEFI, both) and your DHCP server.
    For example I used ISC-DHCP and I set it up with these options:

    next-server <iventoy-server-IP>;
    
    class "UEFI-32-1" {
            match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
            filename "iventoy_loader_16000_uefi";
    }
    
    class "UEFI-32-2" {
            match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
            filename "iventoy_loader_16000_uefi";
    }
    
    class "UEFI-64-1" {
            match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007";
            filename "iventoy_loader_16000_uefi";
    }
    
    class "UEFI-64-2" {
            match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00008";
            filename "iventoy_loader_16000_uefi";
    }
    
    class "UEFI-64-3" {
            match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00009";
            filename "iventoy_loader_16000_uefi";
    }
    
    class "Legacy" {
            match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
            filename "iventoy_loader_16000_bios";
    }
    

    More info can be found in iventoy docs: https://www.iventoy.com/en/doc_ext_dhcp.html