嵌入式Linux网络配置(hisi arm glibc)

2019-07-13 00:34发布

1. ifconfig lo 127.0.0.1
如果ping 127.0.0.1不同,证明回环设置不正确。 可以通过ifconfig -a(或ifconfig)查看其中的lo选项   此为正常,否则需要ifconfig lo 127.0.0.1进行设置即可ping 通127.0.0.1     2. 新建/etc/hosts文件(如果存在则只需修改) 内容如下:127.0.0.1   localhost   3. 建立/etc/resolv.conf(DNS域名服务器IP配置) 内容可以从PC Linux上面copy过来,因为PC Linux和开发板链接Internet所需要的DNS域名是一致的 示例内容可以如下: # Generated by NetworkManager
nameserver 192.168.1.211
nameserver 192.168.1.213
nameserver 192.168.1.1   4. 建立/etc/nsswitch.conf 内容从PC Linux进行copy。 示例内容如下:     5. 配置路由 首先使用route进行查看所需要的网关是否已经被添加进去 #route Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.6.0     *               255.255.255.0   U     0      0        0 eth0 可以获知当前网关被未被添加进去   添加路由: route add default gw 192.168.6.1   此时 #route Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.6.0     *               255.255.255.0   U     0      0        0 eth0
default         192.168.6.1     0.0.0.0         UG    0      0        0 eth0       通过以上设置,开发板应该可以上网了。 当然也可以将其写入脚本中,那么每次开机就不需要这样进行设置啦 例如可以在/etc/profile中进行添加