开发板设置静态IP

设置IP为固定静态IP(开机不变) 设置eth0为静态IP地址,
开发板/etc/network/目录下对interfaces文件进行修改 。
[root@100ask:~]# vi /etc/network/interfaces
修改并为如下内容,执行 :wq 保存并退出,执行/etc/init.d/S40network restart 重启网络服务。
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.5.9
netmask 255.255.255.0
gateway 192.168.5.1

你可能感兴趣的:(IMX6ULL,嵌入式)