我正在尝试在运行 Ubuntu Server 的 VirtualBox 客户虚拟机中托管我自己的开发 Web 服务器。我希望这个虚拟机不仅可以从我的家庭网络访问,还可以从 LAN 外部访问。
因此,我设置了一个静态 IP,以便以后可以将端口转发到此静态 IP。我的 VirtualBox 设置让此虚拟机在桥接模式下仅使用一个适配器。
以下是我的/etc/network/interfaces
样子:
iface eth0 inet static
address 10.0.1.203 /*this is outside the DHCP range*/
netmask 255.255.255.0
gateway 10.0.1.1
network 10.0.1.0
broadcast 10.0.1.255
dns-nameservers: 8.8.8.8 8.8.8.4
输出内容如下ifconfig
:
这里是ifconfig -a
:
以下是 的输出lspci
:
这是我的 VirtualBox 设置:
我的主机系统是 Mac Mini,运行 Mac OS X 10.7。
在客户操作系统中,如果我 ping 一下google.com
:
$ ping google.com
# outputs 'ping: unknown host google.com' immediately
为何我无法访问网络?