OpenWrt Forum Archive

Topic: multiSSID/vlan's @Ubiquiti: Bullet2(xxx2) & Rocket M2(xxx M2)

The content of this topic has been archived on 14 Apr 2018. There are no obvious gaps in this topic, but there may still be some posts missing at the end.

If some one need like me multiSSID/vlans:
The solution is OpenWRT (test with 10.03.1)

on Bullet2/PicoStation2/... (xxx 2):
http://downloads.openwrt.org/backfire/1 … uashfs.bin

cat /etc/config/network

config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'

config interface vlan10
option ifname  eth0.10
option type     bridge
option proto    static
option netmask  255.255.255.0
option 'dns' '8.8.8.8'
option 'gateway' '192.168.10.254'
option 'ipaddr' '192.168.10.1'

config interface vlan11
option ifname  eth0.11
option type     bridge
option proto    static
option ipaddr   192.168.11.1
option netmask  255.255.255.0

config interface vlan12
option ifname  eth0.12
option type     bridge
option proto    static
option ipaddr   192.168.12.1
option netmask  255.255.255.0
cat /etc/config/wireless

config 'wifi-device' 'wifi0'
option 'type' 'atheros'
option 'channel' '5'
option 'disabled' '0'
option 'diversity' '1'
option 'txantenna' '0'
option 'rxantenna' '0'
# use this for channels 1-14 
option 'regdomain' '64'
option 'country' '392'
option 'countrycode' '392'
option 'outdoor' '1'
#
option 'txpower' '20'

config 'wifi-iface'
option 'device' 'wifi0'
option 'mode' 'ap'
option 'ssid' '10SSID'
option 'encryption' 'psk2+tkip'
option 'key' 'vlan 10 secret key'
option 'network' 'vlan10'

config 'wifi-iface'
option 'device' 'wifi0'
option 'mode' 'ap'
option 'ssid' '11SSID'
option 'encryption' 'psk2+tkip'
option 'key' 'vlan 11 secret key'
option 'network' 'vlan11'

config 'wifi-iface'
option 'device' 'wifi0'
option 'mode' 'ap'
option 'ssid' '12SSID'
option 'encryption' 'psk2+tkip'
option 'key' 'vlan 12 secret key'
option 'network' 'vlan12'

on Rocket M2/.. (xxx M2):
http://downloads.openwrt.org/backfire/1 … actory.bin

cat /etc/config/network

config 'interface' 'loopback'
        option 'ifname' 'lo'
        option 'proto' 'static'
        option 'ipaddr' '127.0.0.1'
        option 'netmask' '255.0.0.0'

config 'interface' 'vlan10'
        option 'ifname' 'eth0.10'
        option 'type' 'bridge'
        option 'proto' 'static'
        option 'netmask' '255.255.255.0'
        option 'dns' '8.8.8.8'
        option 'gateway' '192.168.10.254'
        option 'ipaddr' '192.168.10.2'

config 'interface' 'vlan11'
        option 'ifname' 'eth0.11'
        option 'type' 'bridge'
        option 'proto' 'static'
        option 'netmask' '255.255.255.0'
        option 'ipaddr' '192.168.11.2'

config 'interface' 'vlan12'
        option 'ifname' 'eth0.12'
        option 'type' 'bridge'
        option 'proto' 'static'
        option 'netmask' '255.255.255.0'
        option 'ipaddr' '192.168.12.2'
cat /etc/config/wireless

config 'wifi-device' 'radio0'
option 'type' 'mac80211'
option 'channel' '11'
option 'phy' 'phy0'
list 'ht_capab' 'SHORT-GI-40'
list 'ht_capab' 'TX-STBC'
list 'ht_capab' 'RX-STBC1'
list 'ht_capab' 'DSSS_CCK-40'
# use this for channels 1-14 and replace regulatory.bin info: http://wiki.openwrt.org/toh/netgear/wndr3700
option 'country' 'US'
#
option 'txpower' '30'


config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'ssid' '10SSID'
option 'encryption' 'psk2+tkip'
option 'key' 'vlan 10 secret key'
option 'network' 'vlan10'

config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'ssid' '11SSID'
option 'encryption' 'psk2+tkip'
option 'key' 'vlan 11 secret key'
option 'network' 'vlan11'

config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'ssid' '12SSID'
option 'encryption' 'psk2+tkip'
option 'key' 'vlan 12 secret key'
option 'network' 'vlan12'

All work fine, full power , full channels ...
All settings can be view and change from web interface also  ( except regulatory.bin tongue)

(Last edited by superarcan on 1 Feb 2013, 23:01)

Full power? how? Jow's hack?

mark!!

The discussion might have continued from here.