Recent content by encryptedserver

  1. E

    Proxmox Not Automatically Assigning IPv6 via RA/DHCPv6

    Change the IPs auto vmbr0 iface vmbr0 inet static address 192.168.1.10/24 gateway 192.168.1.1 bridge-ports eno1 bridge-stp off bridge-fd 0 post-up iptables -t nat -A PREROUTING -p tcp -d 192.168.1.10 --dport 443 -j REDIRECT --to-ports 8006 iface vmbr0 inet6 dhcp...
  2. E

    Proxmox Not Automatically Assigning IPv6 via RA/DHCPv6

    I am using DHCPv6 in Proxmox for years and never had a problem, did you enable DHCP in interfaces file? https://saudiqbal.github.io/Proxmox/proxmox-IPv6-interface-setup-DHCPv6-or-static.html
  3. E

    [SOLVED] Can't get ipv6 address by dhcp for vmbr0

    Install "apt install isc-dhcp-client" should fix it. https://forum.proxmox.com/threads/proxmox-9-0-4-doesnt-get-ip-by-dhcp.169721/
  4. E

    Proxmox 9.0.4 doesn't get IP by DHCP

    Please also fix bugs related to DHCP like Proxmox refuses to start when DHCPv6 is used because somehow Proxmox is deleting the lease file. https://forum.proxmox.com/threads/looks-like-proxmox-8-is-generating-new-ipv6-duid-for-every-reboot.129429/
  5. E

    Looks like Proxmox 8 is generating new IPv6 DUID for every reboot

    Commenting out #SKIP_DOWN_AT_SYSRESET = yes line in /etc/default/networking works for me now.
  6. E

    Proxmox 9.0.4 doesn't get IP by DHCP

    I wish if both Debian and Proxmox would switch to systemd-networkd, that would be nice.
  7. E

    Proxmox 9.0.4 doesn't get IP by DHCP

    I had the same problem, my server would not boot after using DHCPv6/4 and figured out using logs that dhclient was not installed. Installed dhcpcd first but it did not work so I tried with dhclient and it worked. Please add support for dhcpcd in proxmox...
  8. E

    How can I use dhcpcd instead of dhclient for DHCPv6 and DHCP

    Upgrading from 8 to 9 DHCPv6/4 worked fine but I decided to go for a fresh install of Proxmox 9 and the server would not boot after using DHCPv6/4. After logging in using a monitor I found out using the logs that dhclient is not installed by default and that is why there was no Internet...
  9. E

    [suggestion] Folders for VMS

    Because I do not want to see the long list of VMs, folders would be nice, just expand (Production) (Test) to see all the VMs in that folder only. I do use tags by the way.
  10. E

    [suggestion] Folders for VMS

    I would also like to see folders to categorize VMs into folder names.
  11. E

    Looks like Proxmox 8 is generating new IPv6 DUID for every reboot

    Is this bug fixed in Proxmox 9, It is a bug only happens with Proxmox which deletes DUID file on every reboot and it makes Proxmox unbootable. Serious bug, it needs to be fixed. https://bugzilla.proxmox.com/show_bug.cgi?id=5466
  12. E

    Setting up IPv6 (Unifi Router)

    The gateway IPv6 address you are using is wrong, it is a link-local IPv6 address and local to each device and you cannot connect to it. Try to find the IPv6 of your unifi router, mine is fd88::1 for Openwrt router.
  13. E

    Looks like Proxmox 8 is generating new IPv6 DUID for every reboot

    I can confirm that this works, on my Openwrt I can see that lease is expired on shutdown (correct way) and kept the DUID the same. Proxmox staff needs to look into this and remove the line that removes dhclient files.
  14. E

    Looks like Proxmox 8 is generating new IPv6 DUID for every reboot

    I am not sure why dhcp client files are removed, no other distro does this including Debian. I will remove the code and test it and post it here.