gpt4 book ai didi

vagrant - 通过 wifi 从其他计算机访问私有(private) VM

转载 作者:行者123 更新时间:2023-12-03 22:23:26 25 4
gpt4 key购买 nike

我有一个用于在我的 Mac 上开发的专用网络 VM。我希望我的 android 设备能够与我的 mac 上的 VM 通信。目前,我可以在我的 Mac 上访问我的 Vagrantfile 中定义的 IP 10.10.10.10 并正常访问它,但我无法通过手机在同一个 wifi 上访问它。

我需要做什么才能使其在我的本地网络中可用并通过 wifi 对我的手机可见?

这是我的 Vagrant 文件

Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"

config.vm.network :private_network, ip: "10.10.10.10"
config.ssh.forward_agent = true

config.vm.provider :virtualbox do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--memory", 1024]
v.customize ["modifyvm", :id, "--name", "PHPBoxWith54"]
end

nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/
config.vm.synced_folder "./", "/var/www", id: "vagrant-root" , :nfs => nfs_setting
config.vm.provision :shell, :inline =>
"if [[ ! -f /apt-get-run ]]; then sudo apt-get update && sudo touch /apt-get-run; fi"


config.vm.provision :shell, :inline => 'echo -e "mysql_root_password=root
controluser_password=awesome" > /etc/phpmyadmin.facts;'

config.vm.provision :puppet do |puppet|
puppet.manifests_path = "manifests"
puppet.module_path = "modules"
puppet.options = ['--verbose']
end
end

最佳答案

您正在使用只能由主机访问的专用网络 IP(即使它们在同一个 WLAN 中,其他机器也看不到)。

在您的情况下,最好的选择是使用公共(public)网络(桥接),以便您的 Android 设备可以访问它。

添加 config.vm.network "public_network"在配置 block 中的 Vagrant 文件中。

BTW: the default NAT mode is fine but you'll have to set proper port forwarding rules for each service you want to access (e.g. SSH, HTTP, HTTPS etc...).

关于vagrant - 通过 wifi 从其他计算机访问私有(private) VM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18689014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com