Hello.
How to set static IP on VM without second interface?
If i write in Vagrant file
Code:
config.vm.network "public_network", ip: "10.10.10.20"
I'm getting a second interface with need IP. But I don't need two interfaces on VM.
If i write:
Code:
config.vm.provider "parallels" do |v|
v.customize ["set", :id, "--device-set", "net0", "--ipadd", "10.10.10.20", "--gw", "10.10.10.1", "--nameserver", "10.10.10.1"]
end
config.ssh.host = "10.10.10.20"
Vagrant can not configure VM with timeout (I suspect that there can not be accessed via SSH)