With below code, I can set the custom management network for guests, it works and sets vagrant management network ip addresses for the machines in defined network from DHCP pool. But I need to set specific ip adress for a specific machine, not from DHCP pool. Is there a way to set a static ip?
config.vm.provider "libvirt" do |v|
v.management_network_name = "my_network"
v.management_network_address = "10.11.12.0/24"
end