Search results

  1. A

    [SOLVED] issue with network on proxmox

    Bridge-prts ---> bridge-ports
  2. A

    Live-migrate outside of cluster

    Yes, cli only for now since 7.3 With qm command
  3. A

    Block VM from accessing private IPs (proxmox nodes and switches)

    You need to create a security group with the blocking rule and add it in all yours vms.
  4. A

    proxmox 7.0 sdn beta test

    Maybe try on the exit node : sysctl -w net.ipv4.conf.all.rp_filter=0 I ll be back from holiday next week, and i ll do more tests
  5. A

    proxmox 7.0 sdn beta test

    Hi, do you mean , access from the vm to the exit node ssh or webui ? If yes , this is expected as node services are running in a différent vrf. Exit node is only used as router
  6. A

    VM live migration with local storage

    Before add it to gui, I think we need to add a deny with iothread and multiple disks, as it's buggy. also need to verify how it's works with zfs local replication. (maybe simply forbid it)
  7. A

    VM with 1TB memory +

    can you try without "numa: 1" ?
  8. A

    Set MTU on Guest

    does it work for you ? (I don't have tested it)
  9. A

    [SOLVED] OSD high cpu usage

    @GPLExpert can you give me result of "cat /proc/cpuinfo" of a working node, and node2 ?
  10. A

    Live migration with local storage gives an error

    Ok, I have tested with iothread, and I have problem , migration crashing or qemu process crashing. Also with only 1disk. So it seem that qemu is buggy currently, for drive-mirror + livemigration at the same time when iothread is enabled. https://bugzilla.redhat.com/show_bug.cgi?id=1539530
  11. A

    Using Proxmox just for Ceph management

    yes, it should work. maybe a little bit overkill. you can give a try at https://www.openattic.org/ or wait for next ceph release (mimic), which should have integrated dashboards with management (create/delete/update).
  12. A

    can't add vlan tag x to interface bond0?

    you don't need to define vlan interfaces in /etc/network/interfaces if you define vlan tag in vm configuration, proxmox will create the bond0.vlan interface and a vmbr0v[vlan] bridge for you.
  13. A

    Optimizing proxmox

    they are running fine (around same perf than 3610 or 3710), but take care of dwpd 1.
  14. A

    VXLAN

    Hi, I'm currently working on implementation on vxlan + bgp evpn. This should give us something like vmware nsx. (with anycast gateway on proxmox host). This will work with linux bridge. I'll try to send patches next month.
  15. A

    transform virtio-blk to scsi-virtio

    it's only supported since win8/2012. (maybe 8.1,2012r2) (you also have a gui, "optimize disk")
  16. A

    Ceph - Using jemalloc

    note that since luminous + bluestore, jemalloc don't work well. (because of rocksdb) Ceph devs said that tcmalloc if fine now, since they have switched to async messenger.
  17. A

    [SOLVED] need clarification on cache settings for rbd-based storage

    if you are concerned about dataloss, cache=none. rbd_cache is 32mb (can be tuned), so even with fsync you can loose 32mb. (but you'll don't have filesystem corruption).
  18. A

    [SOLVED] need clarification on cache settings for rbd-based storage

    @David : do you have tried with a bigger file size ? (as it's random write, with a small file, you have more chance to have 2 block near each others, so writeback is usefull is this case).