ubuntu设置Ip,重启不失效

auto lo iface lo inet lookup

1.如果要使用DHCP动态获取则为:

sudo vi /etc/network/interfaces : auto eth0 iface eth0 inet dhcp

保存,退出VI;

2.如果要使用静态IP,则设置:

sudo vi /etc/network/interfaces : auto eth0 # iface eth0 inet dhcp iface eht0 inet static

address 192.168.1.254 netmask 255.255.255.0 gateway 192.168.1.1 nameserver 192.168.1.1

保存,退出VI

使用sudo /etc/init.d/networking restart 或sudo ifdown eth0关闭网络,sudo ifup eth0打开网络,重启网卡。

你可能感兴趣的:(ubuntu设置Ip,重启不失效)