Hi there! I have a weird problem using EAP and dynamic VLANs on my WAX220.
Something is killing the whole network communication once users start logging in to the AP. It starts with occasional packet losses, e.g. pings to the firewall (pfsense with freeradius) get lost. And further also other internal devices become unreachable and the whole network becomes unusable.
The same setup on a Belkin RT3200 works flawlessly. At first glance I also could not see any suspicious packages and there is also no flooding.
Just using VLANs is also working as intended. It is only the combination of EAP and dynamic VLANs that is causing the problems.
Here are the settings for network:
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fda8:822c:9157::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth0'
option ipv6 '0'
option stp '1'
option sendredirects '0'
config device
option name 'eth0'
option macaddr '94:18:65:43:7e:38'
option mtu '1500'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option gateway '192.168.13.1'
option netmask '255.255.255.0'
option force_link '0'
option defaultroute '0'
option delegate '0'
config interface 'vlan1'
option proto 'dhcp'
option device 'br-vlan1'
option hostname 'wifiap3'
option defaultroute '0'
option delegate '0'
config interface 'vlan8'
option proto 'dhcp'
option device 'br-vlan8'
option hostname 'wifiap3-8'
option defaultroute '0'
option delegate '0'
config interface 'vlan16'
option proto 'dhcp'
option device 'br-vlan16'
option hostname 'wifiap3-16'
option defaultroute '0'
option delegate '0'
config interface 'vlan32'
option proto 'dhcp'
option device 'br-vlan32'
option hostname 'wifiap3-32'
option defaultroute '0'
option delegate '0'
config device
option type 'bridge'
option name 'br-vlan1'
list ports 'br-lan.1'
config device
option type 'bridge'
option name 'br-vlan8'
list ports 'br-lan.8'
config device
option type 'bridge'
option name 'br-vlan16'
list ports 'br-lan.16'
config device
option type 'bridge'
option name 'br-vlan32'
list ports 'br-lan.32'
and for wireless:
config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/soc/18000000.wifi'
option channel 'auto'
option band '2g'
option htmode 'HE20'
option cell_density '0'
option disabled '1'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'vlan8'
option mode 'ap'
option ssid 'IOT NETWORK'
option encryption 'sae-mixed'
option key 'SecretSecret'
option disabled '1'
config wifi-device 'radio1'
option type 'mac80211'
option path 'platform/soc/18000000.wifi+1'
option channel 'auto'
option band '5g'
option htmode 'HE80'
option cell_density '0'
config wifi-iface 'default_radio1'
option device 'radio1'
option mode 'ap'
option ssid 'IOT NETWORK 5G'
option encryption 'sae-mixed'
option key 'SecretSecret'
option network 'vlan8'
config wifi-iface 'wifinet2'
option device 'radio1'
option mode 'ap'
option ssid 'PRIVAT NETWORK TWO'
option encryption 'wpa3-mixed+ccmp'
option auth_server '192.168.13.1'
option auth_secret 'confidential'
option acct_server '192.168.13.1'
option acct_secret 'confidential'
option vlan_tagged_interface 'eth0'
option ieee80211w '1'
option dynamic_vlan '2'
option vlan_bridge 'br-vlan'
Any idea where to look into is greatly appreciated! Because poking around in the settings had no effect so far. Thank you!