Closed. This question is off-topic. It is not currently accepting answers. Learn more
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
四年前关闭。
我试过将静态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命令后,它显示地址不同。我该怎么做才能让它从文件中分配数据?

最佳答案

不是
/etc/netware/接口

/etc/网络/接口
不重新启动,您可以尝试:

 /etc/init.d/networking restart


 ifdown eth0
 ifup eth0

还有。。。警告,其他计算机可能正在使用192.168.1.2。
你忘了
 auto eth0
 iface eth0 inet static

关于linux - 在Linux中分配静态IP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30157674/

10-13 07:27