Qualcommax NSS Build

@qosmio
I have set up a second AX3600, installed the latest snapshot (added LuCi).
Next i have configured the VLANS and SSIDs.
This resulted in the following network config:


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 'fdeb:1adb:9791::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'lan1'
	list ports 'lan2'
	list ports 'lan3'

config interface 'lan'
	option device 'br-lan.1'
	option proto 'static'
	option ipaddr '192.168.1.1'
	option netmask '255.255.255.0'
	option ip6assign '60'

config interface 'wan'
	option device 'wan'
	option proto 'dhcp'

config interface 'wan6'
	option device 'wan'
	option proto 'dhcpv6'

config bridge-vlan
	option device 'br-lan'
	option vlan '1'
	list ports 'lan1:u*'
	list ports 'lan2:u*'
	list ports 'lan3:t'

config bridge-vlan
	option device 'br-lan'
	option vlan '10'
	list ports 'lan1:t'
	list ports 'lan2:t'
	list ports 'lan3:u*'

config interface 'worklan'
	option proto 'static'
	option device 'br-lan.10'
	option ipaddr '192.168.10.1'
	option netmask '255.255.255.0'

and Wireless config (only the relevant part)

config wifi-device 'radio1'
	option type 'mac80211'
	option path 'platform/soc@0/c000000.wifi'
	option band '5g'
	option channel '116'
	option htmode 'HE20'
	option cell_density '0'
	option txpower '10'
	option country 'DE'

config wifi-iface 'default_radio1'
	option device 'radio1'
	option network 'lan'
	option mode 'ap'
	option ssid 'OpenWrt'
	option encryption 'psk2'
	option key 'test2test'

config wifi-iface 'wifinet3'
	option device 'radio1'
	option mode 'ap'
	option ssid 'OpenWork'
	option encryption 'psk2'
	option key 'test2test'
	option network 'worklan'

Both work on snapshot.

Now updated to AgustinLorenzos latest version.

No connection to the SSID possible, they request to enter a key, but fail to connect.

The syslog shows:

Thu Sep 12 20:09:24 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: authenticated
Thu Sep 12 20:09:24 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: associated (aid 1)
Thu Sep 12 20:09:32 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: deauthenticated due to local deauth request
Thu Sep 12 20:09:37 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: authenticated
Thu Sep 12 20:09:37 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: associated (aid 1)
Thu Sep 12 20:09:45 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: authenticated
Thu Sep 12 20:09:45 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: associated (aid 1)
Thu Sep 12 20:09:53 2024 daemon.info hostapd: phy1-ap1: STA a0:b3:39:6d:b6:b3 IEEE 802.11: deauthenticated due to local deauth request

I have to disable the Bridge VLAN Filtering and configure the VLANs as described in my last Post.