Hi Alvaro,
I have changed the network setup to use a static IP:
config.vm.network "private_network", ip: "10.0.1.52"
With this configuration the IO performance have improved, I think it solved my problem.
But with this network setup I cannot access VM from other machines in my network, only from the host machine.
So I have tested this network setup:
config.vm.network "public_network", bridge: "br0", ip: "10.0.1.52", netmask: "255.0.0.0"
With this setup I can access the VM from other machines in my network but cannot access it from the host machine.
Is there a way to use a public IP and access the VM from both other machines and the host machine?
Thanks,
Bruno