Search results

  1. K

    Intel 13th Gen IGPU not detected on host

    Does your motherboard BIOS have any options that affect initializing video when both igpu and a discrete graphics card are installed?
  2. K

    Plex - Dell Tiny PCs - Intel Coffeelake GPU - card0/card1

    I have recently noticed some unexpected changes to device nodes. A USB bus now gets assigned to /dev/bus/usb/002 where as it had been 001 previously. The intel gpu node /dev/dri/card0 has become card1 (now there's no card0). This seems to have occurred since kernel 6.8. The USB numbering, I...
  3. K

    [SOLVED] Email not landing in GMAIL inboxes. How to change Received: From in destination?

    If you do think the internal received headers influence google's treatment of the messages, try setting the PMG mail proxy option: 'Hide internal hosts'.
  4. K

    Running Docker on the Proxmox host, not in VM / CT

    I avoided running docker on the pve host. and went with a VM, despite the fact I do not have the PVE firewall enabled. Though you can have pre/post exec systemd overrides to handle the mangling of the firewall. Then I wanted separate stacks, on each of 3 subnets. I could not resist the...
  5. K

    Iptables configuration

    If you want to geo block with iptables you should see better performance with ipsets. I am not sure ufw does that for you. IIRC I used that approach with geoblocking on a consumer grade router years ago and it handled it ok.
  6. K

    Considering Self-Hosting Email with Proxmox Mail Gateway: Advice Needed

    Firstly I haven't done this myself but AIUI postfix re-attempts delivery at specified intervals (default every 4 hours and gives up after 24 hours). This is configurable, directly in postfix if not by PMG. The PMG web UI has a deferred mail report which gives you a view of queued mail. As to how...
  7. K

    postfix chroot and updated shared libraries

    Many thanks for the clarification. I'd assumed postfix ran chroot. The comment in master.cf is misleading as it implies the postfix default is to run chrooted. # ========================================================================== # service type private unpriv chroot wakeup maxproc...
  8. K

    postfix chroot and updated shared libraries

    I notice postfix check complains about differences between system files and their counterparts in postfix chroot: warning: /var/spool/postfix/etc/localtime and /etc/localtime differ warning: /var/spool/postfix/lib/x86_64-linux-gnu/libnss_systemd.so.2 and...
  9. K

    Short question on "Match Field" in What-Object

    I believe the match is case insensitive, unless it's a regex. A colon is not required.
  10. K

    Can't access web interface or ssh

    And it was a particularly inopportune moment to make that mistake with the 8.2 release just appearing.
  11. K

    Can't access web interface or ssh

    Whilst a BIOS update might address those ACPI errors, you mention it's been running fine shortly before that. So, unless you also updated the BIOS before the issue arose (or updated the kernel), I think it unlikely those error messages are connected to the problem. Many/Most motherboards display...
  12. K

    [SOLVED] VNC console slow to connect during VM boot up

    This may have been caused by unavailable DNS. If I access the PVE web UI by IP, rather than hostname, I am able to get much quicker VNC console access to the pfsense guest and so see the splash screen and get to the guest's boot menu. I expected the desktop OS or web browser to have cached DNS...
  13. K

    [SOLVED] VNC console slow to connect during VM boot up

    I find, when trying to reach the console of a vm when booting it, vnc is slow to connect. Meaning I miss the Proxmox splash screen/bios and the opportunity to interact with a guest's boot menu. e.g. pfSense and trying to interrupt boot to get single user mode. Is there something I can do to...
  14. K

    Proxmox VE nested virtualisation not working after update

    If the CT's OS is recent debian, use journalctl command. Same with the PVE host. What I would do is tail the journal journalctl -f on the PVE host, then start the CT. Perhaps do the same in the CT guest, tail the journal prior to starting docker and any containers. journalctl will, if terminal...
  15. K

    Proxmox VE nested virtualisation not working after update

    As @leesteken says, you may be confusing nested kvm with the nesting feature of CTs. The latter I believe allows the CT access to the host's procfs and sysfs. Something I think you need in order to run docker in an unprivileged CT. I have a couple of CTs successfully running docker and PVE is up...
  16. K

    [SOLVED] My mail server need credentials for smart host

    Ah, I misunderstood your question. I (mis)read it as your trying to use the hosting company as smarthost for PMG.
  17. K

    [SOLVED] My mail server need credentials for smart host

    It is also covered in the postfix docs Enabling SASL authentication in the Postfix SMTP/LMTP client Check your domain's spf record includes your hosting company's spf.
  18. K

    Proxmox reporting empty disk reads/writes for LXC containers

    I've experienced lack of (or rather lower than expected) disk IO stats for any CT that was runnng docker. Be it newly created on PVE8 or carried over from a previous install. I thought perhaps pvestat was seeing the read/write activity for the CT root mount but not in docker overlay fs.
  19. K

    SMTP Smuggling mitigation

    I missed that detail. Thanks for pointing it out. I have read the postfix announcement several times over the past month or two. I guess it still didn't sink in!
  20. K

    SMTP Smuggling mitigation

    Are any changes proposed for pmg-api postfix templates following the changes introduced by postfix (3.7.10-0+deb12u1)? * 3.7.10 - Security (outbound SMTP smuggling): with the default setting "cleanup_replace_stray_cr_lf = yes" Postfix will replace stray <CR> or <LF> characters...