以下是摘要。
VirtualBox 4.2.18
主机操作系统:Windows 7
客户操作系统:Ubuntu 12.04
网络:桥接适配器
我可以使用主机名从 ubuntu 客户机 ping 主机和主机网络中的其他机器。但是,我只能使用主机和网络机器的 IP 地址 ping 客户机机器。我在客户机操作系统上运行了 avahi-daemon。
我希望能够使用客户机的主机名从主机和网络上的其他机器 ping/ssh 客户机。请帮忙。
答案1
您创建的新客户虚拟机未被网络中的其他主机解析。您可以尝试以下解决方案。
情况1:
尝试从网络中的另一台主机(例如 Windows)连接到客户机
open the file
C:\Windows\System32\drivers\etc\hosts
Add the following Entry
ipaddressofguest hostname
Save the entry
从 Windows 主机 ping 主机名 [您将能够连接到客户操作系统]
案例 2:
尝试从网络中的另一台主机(例如 Linux)连接到客户机
open the file
/etc/hosts
ipaddressofguest hostname
Save the entry
从 Linux 主机使用主机名 ping/ssh [您将能够连接到客户操作系统]
桑迪普