VirtualBox下Centos无网络

VirtualBox下Centos无网络

运行 Ubuntu 桌面服务器。我安装了virtual box,然后安装了CentOS作为虚拟机。 Centos 未启动 eth0 网络适配器。当我手动启动时,无法连接到机器外部。

有人知道我做错了什么吗?

Virtual Box 4.1.12 和 CentOS 6.2 以及 Ubuntu 11.10 64 位。使用 NAT 寻址。

主服务器的网络:

eth0      Link encap:Ethernet  HWaddr c8:60:00:12:a7:9a  
          inet addr:10.0.0.99  Bcast:10.0.0.255  Mask:255.255.255.0
          inet6 addr: fe80::ca60:ff:fe12:a79a/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:15492 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7192 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:3083151 (3.0 MB)  TX bytes:1104784 (1.1 MB)
          Interrupt:41 Base address:0x4000 

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:16436  Metric:1
          RX packets:6398 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6398 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:789448 (789.4 KB)  TX bytes:789448 (789.4 KB)

CentOS虚拟服务器的网络:

eth0      Link encap:Ethernet  HWaddr 08:00:27:75:b2:9ac2
          inet addr:10.0.0.98  Bcast:10.0.0.255  Mask:255.255.255.0
          inet6 addr: fe80::a00:27ff:fe75:b2c2/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:27 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 b)  TX bytes:1350 (1.3 KiB)


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:16436  Metric:1
          RX packets:6398 errors:0 dropped:0 overruns:0 frame:0
          TX packets:6398 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:789448 (789.4 KB)  TX bytes:789448 (789.4 KB)

答案1

问题似乎出在 NAT 设置上。它要求您使用 10.0.2.* 地址。

要更改默认网络,请转到 VirtualBox Manager 的首选项,然后单击“网络”选项卡。单击编辑图标并将网络 CIDR 修改为您的客人所需的网络。如果您还需要启用/禁用 DHCP 和/或 IPv6,请继续根据您的需要切换复选框。

另外,当我想到时,NAT 并没有为我提供对该 IP 地址的外部访问。我将其更改为桥接,现在一切似乎都正常。

谢谢您的帮助。

相关内容