Add another VLAN providing an open wireless network separated from the LAN in which resides the secured wireless network and the ethernet ports.
This setup is done on a good old WRT54G running OpenWrt Backfire 10.03.1.
Following this you will end up with 2 separated DHCP powered LANs
# original zones and forwarding rulesconfig zone
option name wan
option network 'wan' option input REJECT
option output ACCEPT
option forward REJECT
option masq 1 option mtu_fix 1config zone
option name lan
option network 'lan' option input ACCEPT
option output ACCEPT
option forward REJECT
config forwarding
option src lan
option dest wan
1
2
3
4
5
6
7
8
9
10
11
# zone and forwarding rules to addconfig zone
option name hotspot
option network 'hotspot' option input ACCEPT
option output ACCEPT
option forward REJECT
config forwarding
option src hotspot
option dest wan