3

我有一台作为 VirtualBox 主机运行的 Mac OS X 机器和一台 Linux Mint 来宾。使用Bridged Adapter,两台机器可以访问彼此的网络服务。

这是设置:

Mac OS X     | hanxue-Mac.local    |   VirtualBox host  
Linux Mint   |      mint15         |   VirtualBox guest

主机的网络连接大多是通过Wifi,所以两个IP地址都是动态的;尤其是主人。由于两台机器都运行了 Samba 和命名守护程序,我想使用主机名而不是 IP 地址来访问机器。这可以通过从同一无线 LAN 上的另一台物理机器访问 Linux Mint 来宾上的 Samba 共享来验证。已验证以下内容:

  • 从 hanxue-Mac 访问 mint15 上的 Web 服务器
  • 从 mint15 访问 hanxue-Mac 上的 Web 服务器
  • 从 mint15 上网
  • 从 hanxue-Mac 访问 mint15 上的 Samba 文件共享
  • 从同一 LAN 中的单独 Windows 机器访问 mint15 上的 Samba 文件共享

两种 Samba 访问都使用主机名,而不是 IP 地址。在来宾(Linux Mint)中查找 VirtualBox 主机的主机名将失败:

hanxue@mint15 ~ $ nslookup hanxue-Mac
Server:     127.0.1.1
Address:    127.0.1.1#53

** server can't find hanxue-Mac: NXDOMAIN

hanxue@mint15 ~ $ nslookup hanxue-Mac.local
Server:     127.0.1.1
Address:    127.0.1.1#53

** server can't find hanxue-Mac.local: NXDOMAIN

但奇怪的是,我可以使用它的主机名从 VirtualBox 主机克隆/提取 git 存储库:

mint15 $ git clone git@hanxue-Mac.local:hanxue-rti-scala.git
Cloning into 'hanxue-rti-scala'...
remote: Counting objects: 26, done.
remote: Compressing objects: 100% (20/20), done.
remote: Total 26 (delta 7), reused 0 (delta 0)
Receiving objects: 100% (26/26), 10.09 KiB, done.
Resolving deltas: 100% (7/7), done.

我已经验证没有~/.gitconfig/etc/gitconfig没有任何~/.ssh/known_hosts内容包含 VirtualBox 主机的主机名。当然也没有/etc/hosts

git 如何解析主机名以及如何让来宾 VM 解析主机 VM 的主机名,而无需/etc/hosts每次都手动键入 IP 地址/主机名?

4

1 回答 1

2

响应中有趣的nslookup是您的名称服务器,它似乎是薄荷盒本身:

Server:     127.0.1.1
Address:    127.0.1.1#53

在我的(不可否认的非 Mint)VirtualBox 上,也处于桥接模式,这就是我的名称服务器信息的样子:

Server:     192.168.1.1
Address:    192.168.1.1#53

...如果您的 VirtualBox 连接到更广泛的网络,这就是您所期望的。

您似乎正在使用dnsmasq它可能用于更快的 DNS 解析。但它也可能配置错误,因此是您nslookup失败的根源。我的猜测是git因为它依赖于ssh可能根本不使用系统 DNS 的工作原理。

当你跑步时你会得到什么cat /etc/resolv.conf

于 2013-10-29T05:26:34.993 回答