Search results

  1. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Yes, exactly! you want traffic from the outside arriving on the physical NIC `enp2s0` to get forwarded into your VM. Also make sure that there is no firewall on both Windows and your PVE.
  2. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Ah, when i re-check the network configuration I see post-up iptables -t nat -A POSTROUTING -s '192.168.1.1/24' -o vmbr0 -j MASQUERADE post-down iptables -t nat -D POSTROUTING -s '192.168.1.1/24' -o vmbr0 -j MASQUERADE Could you try set `enp2s0` instead of `vmbr0` i.e.: post-up iptables -t nat...
  3. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Can you chekc if you can ping 8.8.8.8 from the Windows VM? If that works, then NAT is fine, but your DNS might be off. In that case, try setting your DNS server in Windows to something like 8.8.8.8 or the same DNS you have on your PVE in `/etc/resolv.conf`.
  4. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Ok just update the network config in your Proxmox VE `/etc/network/interfaces` as the following, (You may have to edit the private IP in the `vmbr0` to 192.168.x.x instead). After you modified the configuration run the `ifreload -a` command to apply the config. # network interface settings...
  5. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Hi, In this case you have to set up a router/NAT for your VM, which means the VM sits behind a private IP like `10.0.0.x` and then Proxmox `masquerades` the traffic out through your public IP as mentioned in the wiki guide. Could you please share the network configuration you used?
  6. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Could you share what you did in order to see where the issue was? Is your goal to assign a public IP for the Windows VM or a private IP with NAT in order to reach the VM through Remote Desktop?
  7. Moayad

    The virtual machine cannot start normally

    Hi, Could you please share the VM config and the syslog when you start the VM? You can get the VM config using `qm config <VMID>` and the syslog during start the VM you can run the `journalctl -f` command and start the VM.
  8. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Thank you! To understand the situation (correct me if I not understand correct!). The issue is that your main NIC `enp2s0` has the server's IP, but `vmbr0` is set to `manual` with no `bridge-ports` defined. That means the VM's virtual NIC is essentially `bridged` to nothing... so it can't reach...
  9. Moayad

    [SOLVED] Proxmox 8.3.3 - guest windows server 2019 no internet

    Please provide us with the network configuration from the Proxmox VE server `cat /etc/network/interface` and the Windows VM config `qm config <VMID>` as well as the screenshot of the network configuration inside the VM. This can help us identify where is the issue.
  10. Moayad

    [SOLVED] Moving one node to a different subnet

    Thank you for testing! Could you please run the following command on the `rsthost2` node and provide us with the output? grep -r "192.168.165.22" /etc/ I would also check the the Corosync on which IP uses `rsthost2` node you can run `ss` as the following command: ss -tulpn | grep corosync...
  11. Moayad

    [SOLVED] Moving one node to a different subnet

    Thank you for the logs, could you please disable the firewall temporary to see if the issue related to the firewall config, especially for the Corosync traffic UDP ports 5404 and 5405.
  12. Moayad

    [SOLVED] Moving one node to a different subnet

    May you provide us more log entries? And please post the output of `pvecm status`.
  13. Moayad

    [SOLVED] Moving one node to a different subnet

    Have you restarted the `systemctl restart pveproxy.service pvestatd.service`? Do you still can't SSH to the another node from the hostname even after you modified the /etc/hosts? Could you please provide us with the syslog from the `rsthost2`?
  14. Moayad

    [SOLVED] Moving one node to a different subnet

    Hi, Maybe you forgot to change the /etc/hosts IP?
  15. Moayad

    Migrating VMs from Hyper-V to PROXMOX

    Could you tell us which step the VM stuck or did not work after migration?
  16. Moayad

    Migrating VMs from Hyper-V to PROXMOX

    Hi, Did you read our wiki guide about migrate to Proxmox VE [0]? If you have a specific question, feel free to ask to give you more advice [0] https://pve.proxmox.com/wiki/Migrate_to_Proxmox_VE
  17. Moayad

    VM disk usage over 90%

    Hi, How you removed the VMs? Can you try manually remove the unused LVs using `lvremove` command e.,g.: lvremove path/to/VM/del-vm-101-disk-0
  18. Moayad

    Proxmox VE randomly crashing

    Hi, Did you try to do memory tests? you can use Memtest86+ tool.
  19. Moayad

    Problem with Virt-io Version 262 and 266 in Win11 23H2 VM

    Thank you! Could you please also post the VM config?