Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Image RemovedImage Added

1- add  a second interface  ( Public Network )

2- modify the default interface ( NAT ) to have only a single interface

3- if more then one bridge interface is available

4- add  a second interface  ( Private Network )


https://www.vagrantup.com/docs/networking/public_network.html


1- add  a second interface ( into the Vagrantfile) Public Network


1a- First: find the name of the interface

...

  config.vm.network "public_network", adapter: "12", bridge: "Intel(R) Ethernet Connection I219-LM" , ip: "192.168.0.101"


config.vm.network "public_network", :adapter=>1 ,bridge: "Intel(R) Ethernet Connection I219-LM"      >>>>>> ip: "x.x.x.x" did not work for adapter 1!?!#@


adapter: "2"    create the second interface

adapter=>"1"  override he first one


3- if more then one bridge interface is available


edit Vagrantfile

config.vm.network "public_network", bridge: [
  "en1: Wi-Fi (AirPort)",
  "en6: Broadcom NetXtreme Gigabit Ethernet Controller",
]

4- add  a second interface  ( Private Network )

https://www.vagrantup.com/docs/networking/private_network.html


Vagrant.configure("2") do |config|
  config.vm.network "private_network", type: "dhcp"
end

From the vagrantfile:

Image Added



Select an "host-only" interface  with ip address ( name did not work!! )

config.vm.network "private_network", adapter:"2",ip:"192.168.99.10"


Image Added