在linux中分配静态ip

时间:2015-05-10 23:24:13

标签: linux debian static-ip-address

我试图将静态IP分配给我的覆盆子计算机,但重启后它并没有分配它。我的/ etc / networ / interfaces文件如下所示:

auto lo

iface lo inet loopback
iface eth0 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
#iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

重新启动并使用ifconfig命令后,它会显示地址不同。如何从文件中分配数据?

1 个答案:

答案 0 :(得分:1)

不是       的/ etc / BP网络在/接口 是      的/ etc /网络/接口

不重启,你可以尝试:

 /etc/init.d/networking restart

 ifdown eth0 
 ifup eth0

和...警告,也许192.168.1.2被其他计算机使用。

你忘记了

 auto eth0
 iface eth0 inet static