Metainformationen zur Seite

VLAN mit MSSIDs

Openwrt configs

</li>
</ul>

networks

/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' 'lan'
option 'ifname' 'eth0'
#option 'type' 'bridge'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'ipaddr' '192.168.10.1'
 
 
config interface vlan30
option ifname  eth0.30
option type     bridge
option proto    static
option ipaddr   192.168.3.1
option netmask  255.255.255.0
 
config interface vlan40
option ifname  eth0.40
option type     bridge
option proto    static
option ipaddr   192.168.4.1
option netmask  255.255.255.0

wireless

/etc/config/wireless

## HERE change!
config 'wifi-device' 'radio0'
option 'type' 'mac80211'
option 'macaddr' '00:15:6d:f8:f7:bb'
option 'htmode' 'HT20'
list 'ht_capab' 'SHORT-GI-40'
list 'ht_capab' 'DSSS_CCK-40'
option 'channel' '05'
option 'disabled' '0'
##
 
config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'hidden' '0'
option encryption 'psk2'
option key '<here-the-key>'
option 'isolate' '0'
option 'bgscan' '0'
option 'wds' '0'
option 'macfilter' 'none'
option 'ssid' 'test10'
option 'network' 'vlan10'
 
config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'hidden' '0'
option encryption 'psk2'
option key '<here-the-key>'
option 'network' 'vlan20'
option 'ssid' 'test20'
option 'isolate' '0'
option 'bgscan' '0'
option 'wds' '0'
option 'macfilter' 'none'
 
config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'hidden' '0'
option encryption 'psk2'
option key '<here-the-key>'
option 'network' 'vlan30'
option 'ssid' 'test30'
option 'isolate' '0'
option 'bgscan' '0'
option 'wds' '0'
option 'macfilter' 'none'
 
config 'wifi-iface'
option 'device' 'radio0'
option 'mode' 'ap'
option 'hidden' '0'
option encryption 'psk2'
option key '<here-the-key>'
option 'network' 'vlan40'
option 'ssid' 'test40'
option 'isolate' '0'
option 'bgscan' '0'
option 'wds' '0'
option 'macfilter' 'none'

opnsenses