我在 vagrant 内的 e 盒子上创建了。在 Vagrantfile 中,我将网络指定为
Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network :private_network, ip: "192.168.33.10"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
config.vm.network :public_network
我无法访问 VLAN 外的 VagrantBox。我需要访问公共网络中的 Vagrant Box。如何以我需要在公共网络中访问的方式配置 vagrantfile?