My problem is that wireless connections are not getting DHCP addresses. Statically assigning the client an address resolves the issue. NAS is installed. I'm up for whatever you guys have.
/etc/config/network:
#### VLAN configuration
config switch eth0
option vlan0 "0 1 2 3 5*"
option vlan1 "4 5"
#### Loopback configuration
config interface loopback
option ifname "lo"
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0
#### LAN configuration
config interface lan
option type bridge
option ifname "eth0.0"
option proto static
option ipaddr 192.168.128.1
option netmask 255.255.255.0
option gateway 192.168.1.1
#### WAN configuration
config interface wan
option ifname "eth0.1"
option proto static
option ipaddr 192.168.1.2
option netmask 255.255.255.242
option dns 166.102.165.11 166.102.165.13
/etc/config/wireless:
config wifi-device wl0
option type broadcom
option channel 5
option maclist 'XXXXXXXXXXXXXXX'
option macfilter '2'
config wifi-iface
option device wl0
option network lan
option mode ap
option ssid XXXXXXXXXXXXX
option encryption psk2
option key XXXXXXXXXXXXX
/etc/config/dhcp:
config dhcp
option interface lan
option start 100
option limit 150
option leasetime 12h
#config dhcp
# option interface wan
# option ignore 1