gpt4 book ai didi

networking - 你如何在 Vagrant 中为 NFS 创建一个仅限主机的网络?

转载 作者:行者123 更新时间:2023-12-04 02:24:52 25 4
gpt4 key购买 nike

我在文档中找不到有关此错误消息的任何信息:

NFS requires a host-only network to be created.
Please add a host-only network to the machine (with either DHCP or a
static IP) for NFS to work.

这是我的 Vagrant 配置:
Vagrant.configure(2) do |config| 
config.vm.box = "localbox"
config.vm.network "public_network", hostonly: "192.168.33.10"
config.vm.synced_folder ".", "/var/www",
:nfs => true,
:mount_options =>['noacl,nolock,vers=3,udp,noatime,nodiratime,rsize=32768,wsize=32768']

当被问到时,我选择我的机场连接作为网桥(Wi-Fi (AirPort))。

我找不到 hostonly 的单一用法在 Vagrant 文档中。

使用 Vagrant 1.7.4

我的目标只是能够从我家的其他计算机(和我的手机)访问在我家的一台计算机上运行的 VM。

最佳答案

如果您想拥有 NFS 和公共(public)/网桥网络,请尝试以下操作:

Vagrant 文件

config.vm.network "private_network", ip: "192.168.10.100"
config.vm.network "public_network", ip: "192.168.20.200"

或者
config.vm.network "private_network", ip: "192.168.10.100"
config.vm.network "public_network", ip: "192.168.20.200", bridge: "en1: Wi-Fi (AirPort)"

关于networking - 你如何在 Vagrant 中为 NFS 创建一个仅限主机的网络?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38022736/

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