web-dev-qa-db-ja.com

Hyper-Vで実行されているUbuntu Server 16.04でip staticを構成する方法

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

Response ifconfig -a

1
Diego

ソリューション

  1. すべてのサーバーを再起動します。
  2. eth0静的構成を消去して書き込みます。
  3. コマンド/etc/init.d/networking restartを実行しています。
0
Diego