配置文件
http://www.360doc.com/content/23/1210/04/17132703_1107002725.shtml
配置文件位置:/etc/config/network
查看配置命令:ubus
https://blog.csdn.net/szembed/article/details/141646145
https://www.star-elink.com/news/441.html
https://openwrt.org/zh/docs/guide-user/base-system/basic-networking
config关键字
config interface定义了网络接口的配置,而config device定义了物理设备的配置。这两者通常结合使用以设置设备的网络参数。
实际问题
- openwrt启动以后,ip和物理机的ip不在一个网段
这个ip原来默认是192.168.100.1,物理机的ip是192.168.1.100。
由于vmware默认的tty终端显示的高度有限,ifconfig会显示不全,需要ifconfig > /tmp/net.log,再通过vim -R /tmp/net.log查看。
果然,查看br-lan的配置是static ip,将ip改成192.168.1.102之后,虽然openwrt的web页面可以访问,但是会导致物理机无法访问外网。
修改配置/etc/config/network
,将br-lan网卡ip获取方式改为dhcp,/etc/init.d/network restart
0 条评论