通过vagrant设置VM IP

时间:2017-06-12 11:50:57

标签: ruby vagrant wildfly vagrantfile

是否可以在vagrant中声明静态文本IP?

到目前为止,我正在使用它:

Vagrant.configure("2") do |config|
  config.vm.network "public_network", ip: "192.168.1.111"
  end

我正在寻找像

这样的东西
Vagrant.configure("2") do |config|
  config.vm.network "public_network", ip: "testVM"
  end

我想使用testVM访问我的Wildfly-Server(在VM上运行):8080

感谢您提前提供任何帮助

1 个答案:

答案 0 :(得分:1)

testVM不是IP,因此您无法将其用作ip参数。

您可以将主机文件设置为将特定IP重定向到测试域,这样您就可以在主机上的/etc/hosts文件中添加此行

192.168.1.111    testVM.local