ubuntu 14.04有两种管理IP 的方案,一种基于命令行的,一种基于图形界面的,如果检测到 /etc/network/interfaces 已经配置了 ip 则启用此Ip
# interfaces(5) file used by ifup(8) and ifdown(8)
#auto lo
#iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.79
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8
#network 192.168.1.0
#broadcast 192.168.1.255
修改过之后使用 sudo /etc/init.d/networking restart 命令出现 ifdown: interface eth0 not configured
使用下面的命令则可以生效:
sudo ifconfig eth0 down
sudo ifconfig eth1 up