我已经在 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
答案1
解决方案
- 重新启动所有服务器。
- 清理并写入
eth0
静态配置。 - 正在执行命令
/etc/init.d/networking restart
。