为什么虚拟网络编辑器中不显示该接口?

为什么虚拟网络编辑器中不显示该接口?

我对 Ubuntu 还很陌生,所以我尝试更改我的静态 IP 地址,有时它可以起作用并且 IP 地址会发生变化。

我关闭了操作系统,我的静态 IP 地址也改变了,但我可以 ping 通其他 IP 地址。当我检查虚拟网络编辑器时,我的界面没有出现。

eth0虚拟网络编辑器中没有:

答案1

界面eth0显示如下VMnet8。要在 NAT 上设置静态 IP 地址,VMware Workstation 的文档说你必须使用以3127

要将地址更改为静态,您可以按照关于在 Ubuntu 上设置静态 IP 地址的问题的答案(我在下面进行了修改以更好地适合您):

编辑/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 static
address 192.168.59.3
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.59.2
dns-nameservers 192.168.59.2

然后执行以下操作:

sudo /etc/init.d/networking restart

对于需要静态 IP 地址的其他虚拟机,请将其更改192.168.59.3为其他地址。192.168.59.127

相关内容