J'ai configuré une adresse IP statique dans Ubuntu Server, mais lorsque je fais un ifconfig -a
, je ne vois pas la nouvelle adresse IP.
Je dois recharger la nouvelle adresse IP?
Ma configuration:
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
Et enfin
Sudo /etc/init.d/networking restart
Mais je ne vois pas la nouvelle adresse IP, je vois 192.168.1.16
ifconfig -a
Solution
eth0
./etc/init.d/networking restart
.