Linux myimx6ek200 3.14.52-myimx6 #1 SMP PREEMPT Fri Oct 19 17:40:50 CST 2018 armv7l GNU/Linux
这个定制的系统下面如何更改静态IP地址
我看默认的是这个
root@myimx6ek200:/etc# ifconfig
eth0 Link encap:Ethernet HWaddr 1C:87:76:52:77:9F
inet addr:192.168.137.81 Bcast:192.168.137.255 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric: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)
网上大部分的建议都是在vi /etc/sysconfig/network-scripts/ifcfg-eth0进行更改
但是貌似这个系统下面根本没有这个文件
B:
/etc/sysconfig/network-scripts/ifcfg-eth0这个是非常老的系统的方法
现在修改IP的方法默认修改/etc/network/interfaces文件
vim /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.137.81
netmask 255.255.255.0
gateway 192.168.137.1 |