Recent content by Gilou

  1. G

    automated install via PXE boot

    Many DHCP servers allow you to specify custom codes (250 here) for a given MAC, without scripting.. you can also cheat and use info from the request in apache or nginx to match a file on the server..
  2. G

    automated install via PXE boot

    Well, you can use DHCP to provide a different URL, or DNS as stated in https://pve.proxmox.com/wiki/Automated_Installation#Answer_Fetched_via_HTTP..
  3. G

    [TUTORIAL] PVE9 Create a VM Template for a Debian Trixie Server with Cloud-Init

    Well, after all those years of mounting images manually, at least I discover libguestfs-tools.. that is something... I don't really like using debian cloud img for a few opinionated choices there.. top of my head.. no LVM / all in one partition, no swap, default editor.. So, I usually use...
  4. G

    Sync to USB drive fails

    I'd say your drive is not in great shape.. check dmesg for info, and try unmounting it / remounting it. But either it was unplugged / badly treated, either it's dying.
  5. G

    PVE: VM backup to NFS share on Truenas: backup succeeds, but comment and log creation fail

    So, I'd just maproot (user) to root (IIRC mapall doesn't apply to root in TrueNAS, and I don't think it's a good idea to map to root anyway..), and fix the permissions (chown -R root: /mnt/pve/NAS_NFS once re-mounted). You don't need non-root mounts, as Proxmox will mount as root anyway, unless...
  6. G

    Where does 10.0.0.0/8 come from?

    Yeah, it's not that bad, it's indeed the route that drives it to think it has a /8 network. Code is not wrong, but it fails to select the correct (more precise) route, but that may be by design. In src/PMG/Utils.pm it does a proper route check using sub find_local_network_for_ip but if the IP...
  7. G

    Where does 10.0.0.0/8 come from?

    How is your interface configured still? EDIT: I'm guessing, properly, as in, as a /16 or /24, I can reproduce it instantly whatever the size of the network configured, pmg guesses "class A! What else could it be!" when using 10.x subnets. I'd say lack of CIDR support here.. and I'd say that it's...
  8. G

    Where does 10.0.0.0/8 come from?

    I need to check.. and it may be a "bug" in the way it determines it's own net.. not totally wrong because 10/8 certainly includes 10.10/16 or what not, but not exactly clever. I don't remember how this is computed, but I think that is the issue..
  9. G

    PVE: VM backup to NFS share on Truenas: backup succeeds, but comment and log creation fail

    Hi, CIFS should have worked, but well, if you can set up a NFS export, that's fine as well. Can you show us the storage.cfg part about the NFS mount? Maybe also findmnt -u /mnt/pve/NAS_NFS ? Can you check the permissions on /mnt/pve/NAS_NFS/ and /mnt/pve/NAS_NFS/dump ? Also, on the NAS setup...
  10. G

    Sync to USB drive fails

    How are both datastores set up? It seems either the extdrv1 is not mounted, or maybe pbs can't write to it.. but you'd have had an error before the sync job... what does findmnt -u/mnt/extdrv1 tell you? what about ls -al /mnt/extdrive1/ ?
  11. G

    DR configuration in Proxmox

    Hi! There is no "SRM", at least provided by Proxmox. But you get internal backups, or you can use PBS. But all that is more about replacing the Veeam part, than the SRM. However, by using PBS, and adding a layer of backup for the hosts themselves, you can easily have a setup that provides DR...
  12. G

    Proxmox VE 8 to 9 in-place update but kernel still on 6.8

    Also.. you mentioned ZFS, but do you use ZFS on root? If so, maybe you are using systemd-boot instead of GRUB, so next question that the latest commands should hint about: do you use secure boot? What does bootctl tell you? You may have missed some feedback from pve8to9, so depending on your...
  13. G

    Proxmox VE 8 to 9 in-place update but kernel still on 6.8

    GRUB sees your kernel now, we have that info. What does proxmox-boot-tool kernel list tell you now? It should see 6.17, and let you refresh the ESP EFI using that new kernel (no need to pin it). EDIT: Ah, sorry.. read to fast. you did that already. Well, what do proxmox-boot-tool status and...
  14. G

    Proxmox VE 8 to 9 in-place update but kernel still on 6.8

    Hmm, it's weird, can you run update-grub ? I'm guessing something went wrong when it tried to configure it.. Or maybe something like apt install --reinstall proxmox-kernel-6.17 Or proxmox-boot-tool commands from @Impact, though it's weird that update-grub didn't pick up the latest version.. but...
  15. G

    Recommended Bond0 Config

    Set up your bond, use it directly or through a bridge if you want VMs on it. And either set that bridge as VLAN Aware if you only need VLANs for VMs, or add a VLAN if you want to manage your node through it.. and a bridge on top of it if you also need VMs on that VLAN.. OVS has a few features...