Hi, I would like to know how to activate wifi in openwrt with Bpi-r3 ?
wifi status
{
"radio0": {
"up": false,
"pending": false,
"autostart": true,
"disabled": false,
"retry_setup_failed": true,
"config": {
"path": "platform/soc/18000000.wmac",
"cell_density": 0,
"country": "BE"
},
"interfaces": [
{
"section": "wifinet1",
"config": {
"mode": "ap",
"ssid": "OpenWrt2.4",
"encryption": "psk2",
"key": "xxxxxxxxxxx",
"mode": "ap",
"network": [
"lan"
]
},
"vlans": [
],
"stations": [
]
}
]
},
"radio1": {
"up": false,
"pending": false,
"autostart": true,
"disabled": false,
"retry_setup_failed": true,
"config": {
"path": "platform/soc/18000000.wmac+1",
"cell_density": 0,
"country": "BE"
},
"interfaces": [
{
"section": "wifinet2",
"config": {
"mode": "ap",
"ssid": "OpenWrt5",
"encryption": "psk2",
"key": "xxxxxxxxxxx",
"mode": "ap",
"network": [
"lan"
]
},
"vlans": [
],
"stations": [
]
}
]
}
}
cat /etc/config/wireless
config wifi-device 'radio0' option type 'mac80211' option path 'platform/soc/18000000.wmac' option cell_density '0' option country 'BE' config wifi-device 'radio1' option type 'mac80211' option path 'platform/soc/18000000.wmac+1' option cell_density '0' option country 'BE' config wifi-iface 'wifinet1' option device 'radio0' option mode 'ap' option ssid 'OpenWrt2.4' option encryption 'psk2' option key 'xxxxxxxxxxx' option network 'lan' config wifi-iface 'wifinet2' option device 'radio1' option mode 'ap' option ssid 'OpenWrt5' option encryption 'psk2' option key 'xxxxxxxx' option network 'lan'