Hi guys, I'm bit new to Vagrant and struggling to configure a VM with two network interface using host network configuration. Single static IP address is working fine. I'm using following code. I can see IP *192.168.11.69* defined in ifconfig but not 192.168.11.70 ??
OS image is RHEL 7.2 hosts = [ { name: 'wcs_local_env', hostname: 'wcs.testlab', username: 'vagrant', ip: ['192.168.11.69','192.168.11.70'], mbox: 'rhel64Node', }, ] Vagrant.configure("2") do |config| hosts.each do |host| config.vm.define host[:name] do |c| c.vm.box = host[:box] c.vm.hostname = host[:hostname] host[:ip].each_with_index do |ipadr, i| if i > 0 c.vm.network :private_network, ip: ipadr, netmask: '255.255.255.0', :adapter => i else c.vm.network :private_network, ip: ipadr, netmask: '255.255.255.0' end end Thanks, Mathew -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/b6953a3e-3392-445e-ab07-bf900b80e9c7%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.