Hi.
I'm trying to put two guest networks on the same interface, the first network works (wlan0-2), but the second one (wlan0-3) keeps looking for ip and doesn't even connect
My configuration is this
/etc/config/network
config interface 'testea'
option proto 'static'
option ipaddr '10.10.9.1'
option netmask '255.255.255.0'
/etc/config/wireless
config wifi-iface 'wifinet3'
option device 'radio0'
option mode 'ap'
option ssid 'testG'
option encryption 'none'
option network 'testea'
config wifi-iface 'wifinet4'
option device 'radio0'
option mode 'ap'
option ssid 'testG2'
option encryption 'none'
option network 'testea'
/etc/config/dhcp
config dhcp 'testea'
option interface 'testea'
option start '100'
option limit '150'
option leasetime '12h'
/etc/config/firewall
config zone
option name 'wifi2t'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'REJECT'
list network 'testea'
config forwarding
option src 'wifi2t'
option dest 'wan'
config rule
option name 'dns'
option src 'wifi2t'
option dest_port '53'
option target 'ACCEPT'
config rule
option name 'dhco'
list proto 'udp'
option src 'wifi2t'
option dest_port '67'
option target 'ACCEPT'