嵌入式Linux更改IP

2019-07-12 14:18发布

即时生效,重启后失效,恢复原来的ip设置

ifconfig eth0 192.168.1.2 netmask 255.255.255.0

不即时生效,重启后永久有效

vi /etc/init.d/rcS.net 修改其中的ip即可 #!/bin/sh #set eth0 mac address ifconfig eth0 hw ether A0:11:03:08:00:02 #set eth0 ip ifconfig eth0 192.168.1.8 up #add route route add default gw 192.168.1.1

即时生效和永久有效

结合前两种方法即可