[讨论] 如何设定静态IP

明远智睿Lan   2019-5-13 16:25 楼主
A:
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

回复评论

暂无评论,赶紧抢沙发吧
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复