openwrt源码中初始化配置sta模式或开发板上修改配置文件

1.修改wireless文件

 

        option disabled 0
        option network  wwan
        option ssid     xxxx-wifi
        option key      xxxx-wifi_passwd

可以在源码中修改:openwrt_widora/package/mtk-wifi/files/lib/wifi/ralink.sh

openwrt源码中初始化配置sta模式或开发板上修改配置文件_第1张图片 ralink.sh

2.修改firewall文件

     添加sta网络

list   network          'wwan'

 可以在源码中修改 openwrt_widora/package/network/config/firewall/files/firewall.config文件 

openwrt源码中初始化配置sta模式或开发板上修改配置文件_第2张图片 firewall.config

3.修改network 文件

      添加以下sta网络配置:

config interface 'wwan'
        option proto 'dhcp'

 可以在源码中修改:openwrt_widora/package/base-files/files/lib/function/uci-defaults.sh

openwrt源码中初始化配置sta模式或开发板上修改配置文件_第3张图片 uci-defaults.sh

 

ping www.baidu.com

 

 

你可能感兴趣的:(openwrt_widora)