Originally posted by Bryan Mayland:
Also, I configured my router like you did, with the clicking "join network" or whatever and now my power light blinks all the time too. So I guess that's eeeerrrr normal?
The reason the light is blinking is because it doesn't think the WAN interface is up. You may also notice the time is wrong (at least on my device it thinks it is like May 2010). This is because it only updates the time from the NTP server when the WAN interface is up.
When you do the "join network" thing, it creates a third interface called wwan and bridges that to the wan. Because the wan interface isn't technically up, the light blinks to tell you you have no connectivity and the NTP client never gets the current time. The only way it does this is if you edit the wifi config and don't create the wwan interface. This is something that should probably be fixed in OpenWrt but I don't have the time dig into it.
So the solution is either fix OpenWrt or make the configuration work (remove the wwan interface, set wireless to use network=lan):
/etc/config/network
<pre class="ip-ubbcode-code-pre">config 'switch' 'eth0'
option 'enable' '1'
config 'switch_vlan' 'eth0_0'
option 'device' 'eth0'
option 'vlan' '0'
option 'ports' '0 1 2 3 5'
config 'switch_vlan' 'eth0_1'
option 'device' 'eth0'
option 'vlan' '1'
option 'ports' '4 5'
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'type' 'bridge'
option 'ifname' 'eth0.0'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'ipaddr' '192.168.200.1'
config 'interface' 'wan'
option 'ifname' 'eth0.1'
option 'proto' 'dhcp'</pre>
/etc/config/wireless
<pre class="ip-ubbcode-code-pre">config 'wifi-device' 'radio0'
option 'type' 'mac80211'
option 'macaddr' '00:25:9c:52:44:5e'
option 'hwmode' '11g'
option 'disabled' '0'
option 'txpower' '20'
option 'country' '00'
option 'channel' '11'
config 'wifi-iface'
option 'network' 'wan'
option 'encryption' 'psk2'
option 'device' 'radio0'
option 'mode' 'sta'
option 'key' 'mykey'
option 'ssid' 'capnbry24'</pre>
Note that my channel is 11, that might be easy to miss.