6ul 静态IP 配置后重启 无效果
/etc/network/inte**ces 配置如下# Wired or wireless inte**ces
auto eth0
iface eth0 inet static
address 192.168.11.100
netmask 255.255.255.0
network 192.168.11.0
gateway 192.168.11.1
iface eth1 inet dhcp
配置后也使用了sync命令
重启后无效果,不是静态ip
dhcp是自动获取ip地址,需要注掉后静态ip才能生效 zhichao 发表于 2020-3-16 08:47
dhcp是自动获取ip地址,需要注掉后静态ip才能生效
dhcp配的是eth1 啊
脚本内容为
# Wired or wireless inte**ces
auto eth0
iface eth0 inet static
address 192.168.2.231
netmask 255.255.255.0
gateway 192.168.2.1
broadcast 192.168.2.255
auto eth1
iface eth1 inet static
address 192.168.2.232
netmask 255.255.255.0
gateway 192.168.2.1
broadcast 192.168.2.255
网口信息为
eth0 Link encap:EthernetHWaddr CA:ED:B0:BF:72:B4
inet addr:192.168.2.231Bcast:192.168.2.255Mask:255.255.255.0
UP BROADCAST MULTICASTMTU:1500Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B)TX bytes:0 (0.0 B)
eth1 Link encap:EthernetHWaddr 6A:2B:11:DE:43:00
inet addr:192.168.2.232Bcast:192.168.2.255Mask:255.255.255.0
UP BROADCAST MULTICASTMTU:1500Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B)TX bytes:0 (0.0 B)
您参考一下,脚本修改完:wq保存退出,sync保存后重启生效 上边是linux3.14.38的,linux4.1.15可在脚本中设置ip等信息,在开机自启脚本中执行该脚本 zhichao 发表于 2020-3-17 17:39
上边是linux3.14.38的,linux4.1.15可在脚本中设置ip等信息,在开机自启脚本中执行该脚本
linux 4.1.15如何在开机自启脚本中执行该脚本 xiaowanga 发表于 2020-9-10 10:01
linux 4.1.15如何在开机自启脚本中执行该脚本
imx6ul核心板,linux4.1.15,亲测可行。
首先:修改root/etc/network/inte**ces文件,修改内容如下:
# Wired or wireless inte**ces
auto eth0
iface eth0 inet static
address 192.168.2.100
netmask 255.255.255.0
gateway 192.168.2.1
broadcast 192.168.2.255
然后,设置静态IP为192.168.2.100
在/etc/rc.local文件里加入/etc/init.d/networking restart
修改后内容如下:
echo 30000 >/proc/sys/vm/min_free_kbytes
/etc/init.d/networking restart
exit 0
重新启动后,静态IP设置完成。
页:
[1]