Hello

in linux, when you have a network card you should use a single network card
for each segment, having 2 nics on the same segment can cause weird things
with routing to other networks.

the linux way to put more than one 1 in the same network is create aliases
in the network.

say you have eth1 then you can have eth1:0 eth1:1 etc.
Vagrant can have more than 1 nic on the same network, just is not what one
should do.

this works:

hosts = [

  { name: 'wcs_local_env',      hostname: 'wcs.testlab',  username:
'vagrant',  ip: ['192.168.11.69','192.168.11.70'], mbox: 'centos/7', },

]

Vagrant.configure("2") do |config|

  hosts.each do |host|

    config.vm.define host[:name] do |c|

         c.vm.box = host[:mbox]

         c.vm.hostname = host[:hostname]


          host[:ip].each_with_index do |ipadr, i|

            c.vm.network :private_network, ip: ipadr, netmask:
'255.255.255.0'

          end

    end

  end

end


On Thu, Nov 30, 2017 at 8:08 PM, Mathew Abraham <logicthinker...@gmail.com>
wrote:

> 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
> <https://groups.google.com/d/msgid/vagrant-up/b6953a3e-3392-445e-ab07-bf900b80e9c7%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Alvaro

-- 
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/CAHqq0exNWHTjxfs4zr1E7bbSGxNafZb9Vn6VVsM0ezzRcH-b3Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to