Setting up wireless connection

hello all,
total newbie to openwrt. first time ever trying this firmware. here's my total newbie question and i have searched for answer, but just totally confusing myself.

i installed latest openwrt on my netgear r6220 router and everything is working great except i can't figure out how to set up wireless connection. was working on it last for a couple hours and i made it as far as my firecube was seeing the wireless connection but it kept telling me it was out of range and wouldn't connect. is it not possible to setup wireless within the gui as that is what i'm gathering from my searches? i'm not into doing commands or connecting via ssh or telnet or what ever. never had to do that with other 3rd party firmware.

if it's possible to set ip up via gui, could somebody point me in the right direction to do so, or point me to where there are simple step by step instructions on how to do it otherwise?

i did try too go through this info, https://openwrt.org/docs/guide-quick-start/basic_wifi but it still wouldn't connect.

would totally be forever thankful :slight_smile:

The LuCI GUI can do a lot of things -- and certainly all of the basics, but it may be necessary to do a bit of command line stuff to really understand what is going on.

You can start with screenshots and descriptions of what you have done in your setup process.

move in range :wink:

Maybe you describe your problem a little more precisely!

My router is 192.168.33.1
A default firmware is 192.168.1.1
Are you stating that you can not access the Web LuCi address to visually config your Netgear r6220?

Default Wireless LuCi page address...

2022-05-24_1323461

Full Screen Image What do you see here?

It's understandable to be wary of posting images and/or output text from cli uci commands.
Our Mod's and Users will correct posts as you've seen from the first edit to your post.

Show results in lists, configs, command you feel relevant. Redact/Edit information you feel is too sensitive.

i can access and login to the gui at 192.168.1.1, and do what ever i want there. i have tried to follow the instructions here, https://openwrt.org/docs/guide-quick-start/walkthrough_wifi, and can see the network i want to connect to in the interface of router and on my firecube but that's as far as i can get. when i look at the network status of that connection in the fircube, it says not in range. the router is only 10 feet away from firecube so definitely with in range. i can connect to my AP that is upstairs that has stock netgear firmware on it that i can understand!

SSH into the router and run the following command.

uci export wireless; uci show wireless

preformatted text ~ redact password ~ my example

/$ uci export wireless; uci show wireless
package wireless

config wifi-device 'radio0'
	option type 'mac80211'
	option channel '11'
	option hwmode '11g'
	option path 'platform/qca953x_wmac'
	option htmode 'HT20'
	option country 'US'

config wifi-iface 'default_radio0'
	option device 'radio0'
	option network 'lan'
	option mode 'ap'
	option ssid 'OpenWrt'
	option key 'REDATCTED'
	option encryption 'psk2+ccmp'

/$ uci show wireless
wireless.radio0=wifi-device
wireless.radio0.type='mac80211'
wireless.radio0.channel='11'
wireless.radio0.hwmode='11g'
wireless.radio0.path='platform/qca953x_wmac'
wireless.radio0.htmode='HT20'
wireless.radio0.country='US'
wireless.default_radio0=wifi-iface
wireless.default_radio0.device='radio0'
wireless.default_radio0.network='lan'
wireless.default_radio0.mode='ap'
wireless.default_radio0.ssid='OpenWrt'
wireless.default_radio0.key='REDACTED'
wireless.default_radio0.encryption='psk2+ccmp'

got wireless to work now after a bunch more searching and installing some software for broadcasting ssid. after installing 4 different items, setting up wirelesss was as easy as it should've been by default!!

thanks for the replies :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.