Search results

  1. G

    [SOLVED] Full mesh with 3 Proxmox and IPv6!

    Hi folks... It's me again. Just a little update. I figure out that doing this way will be a better approach: frr version 8.5.2 frr defaults traditional hostname proxmox01 log syslog informational service integrated-vtysh-config ! interface lo ipv6 ospf6 area 0.0.0.0 exit ! router ospf6 ospf6...
  2. G

    [SOLVED] Full mesh with 3 Proxmox and IPv6!

    Hi there. I am trying to implement a Full Mesh network with 3 servers. I am using this guide: https://packetpushers.net/blog/proxmox-ceph-full-mesh-hci-cluster-w-dynamic-routing/ My 3 nodes has: 2x 1G NIC Port1 = eno8303 Port2 = eno8403 for the LAN and PVE access. This is my vmbr0 in each...
  3. G

    [SOLVED] iSCSI in Synology. Recurrent error in log

    I didn't said nothing of the kind. I just pointed out that the only way to get snapshot in file storage based is in qcow2 format. That's all.
  4. G

    [SOLVED] iSCSI in Synology. Recurrent error in log

    Yes is true about snapshot but needs to use qcow2 image format. Also, remember to check preallocation to off, in order to thinprovisin works properly. https://pve.proxmox.com/pve-docs/chapter-pvesm.html
  5. G

    [SOLVED] iSCSI in Synology. Recurrent error in log

    It seems some issue with IPv6. Did you tried to disable IPv6?
  6. G

    Suggestion for a Feature to Temporarily Remove VM Configuration

    I think turns the VM into a template or even clone it would be a more efficient way to deal with it. Just move the vm config to another folder doesn't fix the issue, because the VM virtual disk will be there anyway. This could be lead for potential mistakes. Just my 2 cents.
  7. G

    [SOLVED] Proxmox in a Dell R650xs, with fan at Full Speed... 100%!

    [ SOLVED ] After iDrac reset everything seems to be in order. Hi there. I have two Proxmox 8.3.4 running in a R650xs. On of them is ok. But the other, the fun ran at full speed all the time. So they called Dell Support and Dell said that the culprid is the Proxmox! Look at that. So in one of...
  8. G

    Proxmox and Ceph cluster with 5 nodes full mesh network.

    Hi... Thank you for your considerations. The article that I sent in the opening thread, mention something about use the loopback interface, IPv6 and OSPF. Should this set up work out of the box? Thanks
  9. G

    Proxmox and Ceph cluster with 5 nodes full mesh network.

    Thank for your reply. Unfortunately my customer has 4 server and since ceph cluster is better in odd servers, we figured out that add a low profile machine as a 5th node will be a solution. But he can afford to have a good switch for do a traditional network.
  10. G

    Proxmox and Ceph cluster with 5 nodes full mesh network.

    Hi there. I want to create a full mesh network cluster with 5 nodes. So, I went ahead and found this tutorial, which is for 3 nodes but I intend to adapt to work with 5 node. (1 of them, the 5th node will be only for quorum!)...
  11. G

    Migration Problem

    So I have this issue today as well, with two servers which dispite has the same processor, one has two and the other has just one (we are waiting for a shippiment). Using host doesn't work. Using x86-64-v2-AES works as expected.
  12. G

    [SOLVED] how to delete an old server name from Cluster stack?

    Hi there... Before create a cluster with 2 servers, I changed it's name from sp1-pd... to proxmox01 and proxmox02. A name more suitable, indeed! Now, I don't no why, but there is a mistery rubbish in the HA Stack, like showing in the image attached. Please, any idea how get off rid of it...
  13. G

    Massive performance improvement in Linux 6.12

    Although is not encourage, you can compile a custom kernel for yourself. Not an easy task, I might add. Here some instructions: https://forum.proxmox.com/threads/proxmox-ve-8-0-mainline-kernel-builds.135375/ Let me know about your progress. Best regards.
  14. G

    VM with Debian 12 failed to shutdown.

    There is nothing... It's just a fresh Debian 12 installation...
  15. G

    VM with Debian 12 failed to shutdown.

    As you can see, the qm guest agent was able to communcate to the running qemu processes inside the vm, right? So that imply to me that the qemu-guest-agent are up and running. I see the VM IP in the WEBUI as well...
  16. G

    VM with Debian 12 failed to shutdown.

    Hi there folks... I have this strange behavior with a VM with Debian 12 failing to shutdown etiher when click shutdown in the UI or when trigger the qm guest cmd command: pve200:~# qm guest cmd 100 shutdown { "error" : { "class" : "GenericError", "desc" : "child process has...
  17. G

    No password mechanism???

    Oh! Right!!!!.... Thank you @fiona I have forgot this little detail...
  18. G

    No password mechanism???

    Hi there folks Hope everyone is in good time. I've had create this script: #!/bin/bash while read a do PBS_REPOSITORY="root@pam@SERVER_IP2:backup" PBS_PASSWORD="good_password" PBS_FINGERPRINT="some_numbers" proxmox-backup-client change-owner --repository=$PBS_REPOSITORY $a admin@pbs done...