Metainformationen zur Seite
VLAN mit MSSIDs
Quellen: https://openwrt.org/docs/guide-user/network/wifi/bridgedap https://trizelka.wordpress.com/openwrt-multiple-ssid-with-vlan/ https://forum.openwrt.org/t/multi-ssid-wifi-on-different-vlans/23359/13 https://frdmtoplay.com/configuring-a-vlan-per-ssid-with-openwrt-and-pfsense/ https://forum.netgate.com/topic/104277/tutorial-pfsense-openwrt-multiple-ssids-and-vlans https://wiki.archlinux.org/title/VLAN
<ul>
<li>
The CPU port needs to be tagged, as well as the port that is connected to your pfSense box.
</li>
<li>
Openwrt configs
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'