我无法从虚拟机连接到主机,反之亦然。我研究了很多小时,但仍然找不到问题所在。
在 /etc/网络/接口:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.178.150
netmask 255.255.255.0
broadcast 192.168.178.255
gateway 192.168.178.1
我也尝试过iface eth0 inet dhcp
重启网络service networking restart
。但如果我尝试 ping 主机或路由器,那么我总是得到Destination host unreachable
。
ifconfig 输出片段:
eth0 Link encap: Ethernet
Hardware Addresse 00:50:XX:XX:XX:XX
inet Adresse: 192.168.178.150
Bcast: 192.168.178.255
Maske: 255.255.255.0
VMWare 设置:
我还尝试了什么:
- 禁用
network-manager
:没有什么区别。 - 进入
nameserver 192.168.178.1
/etc/resolv.conf
答案1
检查客户操作系统上的 iptables(根据您的解释,是 Linux),它可能会阻止 ping 请求。要列出 iptables 防火墙配置类型:
iptables -nL
如果 iptables 没有返回任何内容,请确保“VMware 虚拟网络”驱动程序已在主机操作系统上正确安装并运行正常。
考虑备份您的客户虚拟机并重新安装 VMware。
祝你好运!