如何在 Hyper-V 中运行的 Ubuntu Server 16.04 中配置静态 IP

如何在 Hyper-V 中运行的 Ubuntu Server 16.04 中配置静态 IP

我已经在 Ubuntu Server 中配置了静态 IP,但是当我这样做时ifconfig -a我看不到新的 IP。

我必须重新加载新的 IP 吗?

我的配置:

sudo nano /etc/network/interfaces

auto eth0
iface eth0 inet static
address 192.168.1.21
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4

sudo nano /etc/resolv.conf

nameserver 8.8.8.8
nameserver 8.8.4.4

最后

sudo /etc/init.d/networking restart

但我没有看到新的 IP,我看到的是 192.168.1.16

ifconfig -a

响应 ifconfig -a

答案1

解决方案

  1. 重新启动所有服务器。
  2. 清理并写入eth0静态配置。
  3. 正在执行命令/etc/init.d/networking restart

相关内容