Comment Re:Open access but outside the firewall possible? (Score 1) 520
Yup, openwrt can provide two wireless networks at once through virtual interfaces. Adding some traffic shaping to this to enforce rate limits shouldn't be a problem. Here's my openwrt config for example :
# cat
/etc/config/wireless
config 'wifi-device' 'radio0'
option 'type' 'mac80211'
option 'macaddr' '00:14:bf:20:54:88'
option 'hwmode' '11g'
option 'channel' '3'
option 'disabled' '0'
config 'wifi-iface'
option 'device' 'radio0'
option 'ssid' 'OpenWrt'
option 'mode' 'ap'
option 'wds' '1'
option 'encryption' 'psk2'
option 'key' '4pT8_(fT.......'
option 'network' 'lan'
config 'wifi-iface'
option 'device' 'radio0'
option 'ssid' 'OpenWRT-OLSR'
option 'mode' 'adhoc'
option 'bssid' '3c:16:5a:14:b2:38'
option 'encryption' 'none