Recent content by Hannes Laimer

  1. Hannes Laimer

    PVE Umgebung und Guests teilweise nicht erreichbar - Logs?

    Hey, journalctl --since "2026-06-02"(Datum kannst du beliebig anpassen, mit -b gibt's die logs seit dem letzten boot) sollte ein guter start sein. Da sowohl der host als auch die guests betroffen sind, würde ich sagen das sieht nach einem Problem im Netz aus, evtl. auch mit dem NIC am PVE host...
  2. Hannes Laimer

    SDN VLAN VNets no longer work after an update from 9.1.9 to 9.2.2

    Hey, thanks for the info! I tried to reproduce the problem you are describing, but could not. Could you try setting up some dummy guests and rebuilding your network setup(still dummy, don't re-build the actual thing :) ) step-by-step, and narrowing down where things start to not work? This...
  3. Hannes Laimer

    Add-in for Outlook

    Hey, I am super not familiar with how the outlook add-on system works, but it would have to just talk to the PMG api. Probably with a configured token, either way, that isn't really something that is implemented on the PMG side AFAICT.
  4. Hannes Laimer

    SDN VLAN VNets no longer work after an update from 9.1.9 to 9.2.2

    Hey, thanks for the output! I could not really find anything suspicious in the output, could you run tcpdump on the interfaces, then try ping: - tap131i0 - ln_v0074 - bond1 (same on the receiving side, tap.. changes to the one of the target guest) how far do the ICMP packets get? So, on which...
  5. Hannes Laimer

    Nach Update geht Trunk/Linkaggregation nicht mehr

    Hey, das NO-CARRIER bedeutet, dass kein physischer link bei eno1 erkannt wird. Meistens ist das Kabel nicht ordentlich eingesteckt, oder defekt. Hast du das schon überprüft?
  6. Hannes Laimer

    PBS 4.2 Move groups and namespaces within a datastore for easier backup reorganization

    Hey, with the current default it behaves like sync would currently, that is also the reason it was chosen. Something like a datastore option that allows configuring the default could make sense. What I am not so sure about is offering an option to change the ID of a group, this would mean...
  7. Hannes Laimer

    some questions firewall

    Hey, 1. not quite, for vnets the the firewall attaches to the bridge FORWARD hook, so there is no separate IN/OUT. So it will filter everything that goes through the bridge, this can be east-west traffic between guests on the same vnet, but also includes traffic between vlan's on that vnet. The...
  8. Hannes Laimer

    Sicherung auf USB?

    Mit remove-vanished auf dem sync job sollten nicht mehr vorhandene entfernt werden. Und mit 4.1.8[1], gibt es eine Flag[2] mit der eingestellt werden kann, dass ein GC vor jedem unmount gestartet werden soll. Prune jobs können nicht direkt wie sync jobs beim mount gestartet werden, solltet ihr...
  9. Hannes Laimer

    Support for Unicode characters in usernames

    I think this is because we get ldap values already utf-8 encoded, but treat them as if they are not. sent a patch[0]. [0] https://lore.proxmox.com/pve-devel/20260417110451.134766-1-h.laimer@proxmox.com/T/#u
  10. Hannes Laimer

    ip6 autoconfig address keeps popping up

    Hey, with Debian 13 /etc/sysctl.conf is no longer used[1]. Easiest solution is probably to just move the configs into a .conf file in /etc/sysctl.conf.d/ as outlined in [1]. [1] https://www.debian.org/releases/trixie/release-notes/issues.en.html#etc-sysctl-conf-is-no-longer-honored
  11. Hannes Laimer

    Promox, OMV and USB disk enclosure - how to set-up

    Hey, what you could do is pass the USB port through to a VM directly, so the OMV is completely in control of the disks. Just keep in mind that if you want VM backups to also include the data on the disks you will have to first add them as a storage to PVE and assign a virtual disk on that...
  12. Hannes Laimer

    Datastore access for linux user

    Did you take a look at [1]? That is not how PBS works, it splits up the data into chunks and just references chunks that already exist. So you can't just copy something into the same directory as a datastore. Backups directly from stdin is currently being worked on [2], with zfs send ... you...
  13. Hannes Laimer

    Datastore access for linux user

    Hey, what do you mean with "TrueNAS replication" target? Will it pull whatever is in the specified dir off the PBS, or would it write onto it? Generally maybe take a look at [1], that should give you a rough overview of what a datastore is, how it is used, and why it is not really meant to be...
  14. Hannes Laimer

    [SOLVED] Proxmox host using wrong bridge to mount fstab

    Hey, what is the IP in question? I assume it is on none of the networks that the interfaces have IPs assigned on. Generally there is only one gateway, if you have multiple specified only one will actually be used. Based on your description I assume it's 30.30.30.1. You can check with ip r...
  15. Hannes Laimer

    IPv6 Router Advertisements (RA) deaktivieren

    Hey, das sollte mit echo "net.ipv6.conf.all.accept_ra = 0" > /etc/sysctl.d/99-no_v6ra.conf und einem reboot funktionieren. Mögliche andere Werte für die Option gibts in [1], und solltest du das nur für gewisse NICs wollen, einfach das all ersetzen. [1]...