答案1
界面eth0
显示如下VMnet8
。要在 NAT 上设置静态 IP 地址,VMware Workstation 的文档说你必须使用以3
以127
。
要将地址更改为静态,您可以按照关于在 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