Slashdot Mirror


User: MW-537

MW-537's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Open access but outside the firewall possible? on Ask Slashdot: Best Way To Leave My Router Open? · · Score: 1
    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