Wifi no working on Omega2+

Hi everyone, I installed today openwrt on my Omega2+ and I can't make wifi work, any idea ?

root@Omega-BEA3:/# cat /proc/net/dev
Inter-|   Receive                                                |  Transmit
 face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
  eth0:       0       0    0    0    0     0          0         0    86859     261    0    0    0     0       0          0
 wlan0:       0       0    0    0    0     0          0         0        0       0    0    0    0     0       0          0
    lo:   14560     224    0    0    0     0          0         0    14560     224    0    0    0     0       0          0
root@Omega-BEA3:/# vi notes.txt
root@Omega-BEA3:/# wifi
radio0(ralink): Interface type not supported
'radio1' is disabled
radio0(ralink): Interface type not supported
'radio1' is disabled


config wifi-device 'radio0'
        option type 'ralink'
        option variant 'mt7628'
        option country 'US'
        option hwmode '11g'
        option htmode 'HT40'
        option channel 'auto'
        option disabled '0'
        option device_mode 'apsta'
        option op_mode 'preference'
config wifi-iface 'default_radio1'
        option device 'radio1'
        option network 'lan'
        option mode 'ap'
        option ssid 'OpenWrt'
        option encryption 'none'

What version of OpenWrt did you install (cat /etc/banner) ? Also, please post output from lsmod.

From what I see here, it looks like you tried to upgrade the stock version from Onion with either a custom build of OpenWrt or a recent snapshot build. If this is true, you need to reset you network configuration. Try the following:

rm /etc/config/wireless
wifi config

You should now be able to finish your wifi setup.

1 Like