by default vagrant clears the existing network interfaces:
==> default: Clearing any previously set network interfaces...
How can I prevent that? I tried to fix that since hours but can't get it to work. For example i edited the homestead.rb file and changed
config.vm.network :private_network, ip: settings["ip"] ||= "192.168.10.10"
to
config.vm.network :private_network, ip: settings["ip"] ||= "192.168.10.10", auto_config: false
But it still keeps doing it.