Search results

  1. Hannes Laimer

    [SOLVED] Cannot Add This Node to a Proxmox Cluster - Even after a complete fresh install on the node

    Hey, how did you join the cluster? Did the tasklog show any errors? Could you post the tasklog?
  2. Hannes Laimer

    Bridge - Lowest speed

    Hey, how did you test the speed? Just to be sure, you mean a 5G ethernet adapter, right? Could you post your /etc/network/interfaces file, remove any public IPs, if it should contain any. Also, could you post the output of ethtool <INTERFACE> for both interfaces. Generally, a normal linux...
  3. Hannes Laimer

    CentOS 3/4

    But you said the VM can't use the drive like this, my question was if you have tried either IDE or SATA(instead to VirtIO), and if that also did not work.
  4. Hannes Laimer

    CentOS 3/4

    Have you tried IDE or SATA, did both not work?
  5. Hannes Laimer

    CentOS 3/4

    Hey, I don't see why downloading the ISO and booting it wouldn't work. Did you run into problems with that?
  6. Hannes Laimer

    Unable to turn interface up

    Hey, usually NO-CARRIER indicated nothing being plugged in. Could you check if the cable is in properly? Maybe also try a different port, you'd have to adjust you interfaces file for that, so instead of eno3 use one of the others for the bridge.
  7. Hannes Laimer

    Is there any tool to migrate VMs from VMWARE to Proxmox?

    Yes, take a look at [1] for that. [1] https://pve.proxmox.com/wiki/Migrate_to_Proxmox_VE#Automatic_Import_of_Full_VM
  8. Hannes Laimer

    How to copy backup from PBS to local PBS on VirtualBox

    You don't create a backup group[1]. A group is a VM/CT, and it contains the backups of said VM/CT. [1] https://pbs.proxmox.com/docs/terminology.html#backup-group
  9. Hannes Laimer

    How to copy backup from PBS to local PBS on VirtualBox

    No, you can configure a group filter to only sync a single VM but not how many snapshots should by synched. Keep in mind that due to deduplication[1] two backups don't take up double the space, you can however setup a prune job[2] on the target to only keep the last snapshot and have it run...
  10. Hannes Laimer

    How to copy backup from PBS to local PBS on VirtualBox

    Hey, you can use a sync job[1] for that. [1] https://pbs.proxmox.com/docs/managing-remotes.html#sync-jobs
  11. Hannes Laimer

    IPv6 gateway outside of the subnet.

    Ohh, I'm sorry. The command does not set the gateway... ip -6 route add default via <PVE_HOST_IPV6_LL_ADDRESS>%<VM_IFACE> this(in each VM) should, <VM_IFACE> may be different for each VM. Note: you actually need to use the host's link-local address, as its IP is not on the same subnet as the...
  12. Hannes Laimer

    IPv6 gateway outside of the subnet.

    The VMs keep the CIDR and IPs you want them to have, the idea is just to tell them to route their traffic through the PVE host, you could also use the hosts link-local address it has on the bridge. And the host then forwards everything to the gateway using the gateways link-local address. ip -6...
  13. Hannes Laimer

    Please help with my netplan configuration

    Hey, I assume 57.128.188.195 is the PVE host. - Can you ping the PVE host from the VM? - Can you ping 1.1.1.1? If you can, there is a problem with DNS. - Could you also post the output of ip a from the VM. - You can ping google.com from the PVE host, right? Also, make sure ip forwarding is...
  14. Hannes Laimer

    Proxmox Install, Is Using Kickstart Possible?

    I think [1] should mention everything, for a complete overview you can take a look at [2], the structs/enums there describe all available fields and possibly formats they expect. [1] https://pve.proxmox.com/wiki/Automated_Installation [2]...
  15. Hannes Laimer

    IPv6 gateway outside of the subnet.

    Yes, you can use the link-local address of the gateway as the default GW for the host, this is common practice. VMs then have the hosts Global Unicast Address as their gateway. Just make sure ipv6 forwarding is enabled on the host. # add this to /etc/sysctl.conf net.ipv6.conf.all.forwarding=1...
  16. Hannes Laimer

    [SOLVED] [SOLVED] Registry Wiederherstellung über Datei Restore

    Hey, die Einträge sind alphabetisch geordnet, also A, B, C, ... > a, b ,c , ..., alles mit Kleinbuchstaben kommt nach dem letzten der mit Großbuchstaben beginnenden Einträge, C:\Windows\System32\config sollte in der Liste sein, nur halt etwas weiter unten. edit: Könnte mir auch vorstellen...
  17. Hannes Laimer

    Slow Network Speeds in Containers in Guests

    Could you iperf3 -s in the VM and iperf3 -c <VM_IP> in the container? You might have to start the container with docker run --network=host ...
  18. Hannes Laimer

    Network Interface Configuration

    Hey, I see you have both interfaces as bridge ports, but since they are on the same network, this doesn't really have any benefit, it'll actually will probably cause problems. You can either only use one, or configure a bond and have the second one as a backup, that would look something like...
  19. Hannes Laimer

    Slow Network Speeds in Containers in Guests

    Hey, how is the packet loss? A bit of a wild guess, but is it possible the configured MTUs along your network don't always match up, other than that I can't really think of anything that might explain this, since the speed is fine for the VM itself. Have you tried different docker images, do...
  20. Hannes Laimer

    [SOLVED] Unable to access or ping Proxmox

    Do you have a firewall configured either on PVE, or your router?