@corey.maddocks
Could you publish your \etc\config\network and \etc\config\wireless? I have a lot of difficulties to reproduce the same setup.Thanks in advance
Sorry for the delayed response. Here you go!
Login screen:
Using username "root".
root@10.1.1.1's password:
BusyBox v1.19.4 (2014-05-12 09:54:49 UTC) built-in shell (ash)
Enter 'help' for a list of built-in commands.
_______ ________ __
| |.-----.-----.-----.| | | |.----.| |_
| - || _ | -__| || | | || _|| _|
|_______|| __|_____|__|__||________||__| |____|
|__| W I R E L E S S F R E E D O M
-----------------------------------------------------
BARRIER BREAKER (Bleeding Edge, r40749)
-----------------------------------------------------
* 1/2 oz Galliano Pour all ingredients into
* 4 oz cold Coffee an irish coffee mug filled
* 1 1/2 oz Dark Rum with crushed ice. Stir.
* 2 tsp. Creme de Cacao
-----------------------------------------------------
root@OpenWrt:~#
/etc/config/network:
root@OpenWrt:~# cat /etc/config/network
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fdf6:840d:a144::/48'
config interface 'lan'
option ifname 'eth0.1 eth1'
option type 'bridge'
option proto 'static'
option ipaddr '10.1.1.1'
option netmask '255.255.255.0'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '0 1 2 3 4'
/etc/config/wireless
root@OpenWrt:~# cat /etc/config/wireless
config wifi-device radio0
option type mac80211
option channel 11
option hwmode 11g
option path 'platform/ar933x_wmac'
option htmode HT20
config wifi-iface
option device radio0
option network lan
option mode ap
option ssid OpenWrt
option encryption none
One thing that tripped me up initially was that wireless is disabled by default. You have to delete that line from /etc/config/wireless.
Once it is set to WAP mode, the switch ports are no longer usable other than as an uplink to your wired network. Any port will work for this and it will broadcast wireless. Connected clients will get a DHCP address from your main router.
To connect to the WAP later to make changes such as SSID or encryption key, disconnect the uplink cable and direct connect a PC to any port. Set the PC's IP address to something other than the WAP's (10.1.1.2 / 255.255.255.0 in my example) Then connect with putty, edit /etc/config/wireless or network as needed. Run /etc/init.d/network reload. Unplug the PC and plug the uplink cable back in. Done!