Re: [vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-03-12 Thread _nobody_ _nobody_
There is an action going on regarding this issue. Please, find the explanation in some details here: [Former issue #9426] Assigning private network to ETH2 interface got magically assigned to the ETH1 interface?! #9510 https://github.com/hashicorp/vagrant/issues/9510 Private network IP

Re: [vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-02-01 Thread _nobody_ _nobody_
This is the perfect answer (which I knew already/yesterday I got the more complete idea - the domain I am in is not so trivial). The only problem here: I do NOT see/envision anywhere in such /bin/bash script Vagrant/Vagrant environment?! We are talking here about Vagrant networking,

Re: [vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-02-01 Thread _nobody_ _nobody_
This is the perfect answer (which I new already). The only problem here: I do NOT see/envision anywhere in such /bin/bash script Vagrant/Vagrant environment?! We are talking here about Vagrant networking, ain't/aren't we??? Thank you, Zoran -- This mailing list is governed under the

Re: [vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-02-01 Thread Alvaro Miranda Aguilera
hello choose one of these: - you pass the USB to the VM and configure that in the VM . what you are doing with vbox manage is plug the usb IN the VM - configure the USB on the host, check what eth is, and use network_private to make a nic on the VM using that. one or the other, no both then

Re: [vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-01-31 Thread _nobody_ _nobody_
Hello Alvaro, Here is my VBox Vagrant file (important part of it): I have one physical ETH0 interface, and I also configured NAT forwarding, and here it is: # Forward port for the internal REST server config.vm.network :forwarded_port, guest: , host: # Forward port 8010 for

Re: [vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-01-31 Thread Alvaro Miranda Aguilera
hello can we step back a bit? What do you need to happen, then we can check on how we can make that to happen. By default vagrant provides one interface as Nat on top of that you can add private (in a isolated network) or public (bridged to some interface) you can choose dhcp (default) or

[vagrant-up] Configuration of the /etc/network/interfaces and /etc/dhcp/dhcpd.conf by Vagrantfile?

2018-01-30 Thread _nobody_ _nobody_
Hello to everyone, I have an interesting question here: Can I provide by Vagrantfile the configuration of /etc/network/interfaces, namely, can I add in the etc/network/interfaces the following: # The USB-Ethernet interface 2 allow-hotplug eth2 iface eth2 inet dhcp The another question