在 Win10 上通过 HTTP 连接到 VirtualBox

Connecting over HTTP to VirtualBox on Win10

我已经使用 Vagrant 和 Puphpet 设置了一个 VirtualBox。该框已设置好,我可以使用 Putty 登录到 127.0.0.1 端口 2222

我的问题是我似乎无法通过任何其他路由(即 HTTP)进行连接。

在浏览器中点击 192.168.56.101 结果 "took too long to respond"。盒子的网络设置为 NAT,Adapter2 设置为 Host Only。

Here's my puphpet YAML config file

您必须在 Vagrantfile 中定义转发规则:

config.vm.network "forwarded_port", guest: 80, host: 80

或者你在Virtualbox中定义转发规则

定义转发规则后重启Box。