Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No guest IP was given to the Vagrant core NFS helper. #88

Open
hovissimo opened this issue Mar 23, 2016 · 3 comments
Open

No guest IP was given to the Vagrant core NFS helper. #88

hovissimo opened this issue Mar 23, 2016 · 3 comments

Comments

@hovissimo
Copy link

I'm seeing No guest IP was given to the Vagrant core NFS helper. This is an internal error that should be reported as a bug. when I vagrant up test.

No error, and things work fine (but slowly) if I take off type: "nfs"

Win 10 host.
Relevant parts of the Vagrantfile:

config.vm.network "private_network", type: "dhcp"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.vm.define "test" do |test|
  test.vm.box = "box-cutter/ubuntu1404-desktop"
  test.vm.provision :shell, path: "vagrant/provision_test.sh"
  test.vm.provider "virtualbox" do |v|
    v.gui = true
  end
end
config.vm.provider "virtualbox" do |v|
  v.memory = 2048
  v.cpus = 4
end
@jstuyts
Copy link

jstuyts commented Jun 20, 2016

I have the same host environment and a FreeBSD guest. I get the same error message, but using a static IP address for the private network resolves that.

@bernhardberger
Copy link

I get the same message.

No guest IP was given to the Vagrant core NFS helper. This is an internal error that should be reported as a bug.

Relevant parts:

Vagrant.configure("2") do |config|
    config.vm.box = "ubuntu/trusty64"

    config.vm.network :private_network, type: :dhcp

     config.vm.synced_folder ".", "/vagrant",
        type: "nfs"

    config.hostmanager.manage_host = true
    config.hostmanager.manage_guest = false
    config.hostmanager.ignore_private_ip = false
    config.hostmanager.include_offline = true

Thing is that I can't just hardcode the IPs as I need to have multiple vagrant boxes running at the same time

@Luc45
Copy link

Luc45 commented Sep 27, 2018

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants