Ubuntu 13.10 服务器 (VirtualBox) 的静态 IP

Ubuntu 13.10 服务器 (VirtualBox) 的静态 IP

我正在尝试将我的 Ubuntu VirtualBox(客户机)更改为静态 IP。我启用了桥接网络,这使我可以轻松地从 Mac 通过 SSH 进入虚拟盒。

当我在 Ubuntu 虚拟盒中运行 ifconfig 时,我得到以下信息:

eth0      Link encap:Ethernet  HWaddr 08:00:27:01:64:ea
          inet addr:192.168.43.161  Bcast:192.168.43.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe01:64ea/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:163 errors:0 dropped:0 overruns:0 frame:0
          TX packets:124 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:17856 (17.8 KB)  TX bytes:14776 (14.7 KB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

机器运行良好,我能够通过 Apache 访问机器上托管的 URL,而且机器本身也可以访问互联网。

为了转换为静态,我正在编辑 /etc/network/interfaces 文件并添加以下信息:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
#iface eth0 inet dhcp

iface eth0 inet static
address 192.168.43.161
netmask 255.255.255.0
gateway 192.168.43.1

我使用的 IP 地址与 ifconfig 给出的相同,并且我从

route -n

命令。

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.43.1    0.0.0.0         UG    0      0        0 eth0
192.168.43.0    0.0.0.0         255.255.255.0   U     0      0        0 eth0

然而,当我通过这种方式更改为静态 IP 地址时,虚拟盒就失去了连接到互联网的能力。

我究竟做错了什么?

答案1

我建议您选择路由器中 DHCP 服务器使用的范围之外的地址,而不是复制相同的地址。此外,您必须指定 DNS 名称服务器:

auto lo
iface lo inet loopback


auto eth0
#iface eth0 inet dhcp

iface eth0 inet static
address 192.168.43.200
netmask 255.255.255.0
gateway 192.168.43.1
dns-nameservers 8.8.8.8 192.168.43.1

相关内容