Display Interface/VLAN id in LuCI > Wireless > Associated Stations

When using dynamic VLAN assignment the Associated Stations do not display information regarding the VLAN to which a device is connected

Can this be enhanced? (this requires maybe the ip-bridge package)

root@OpenWrt:~# bridge fdb show | grep -i 7e
xx:xx:xx:xx:xx:7e dev eth0 self permanent
xx:xx:xx:xx:xx:7e dev phy1-ap0-guest vlan 20 offload master br-lan

note: I configured dynamic VLAN assignment like this

config wifi-vlan
	option name 'lan'
	option network 'lan'
	option vid '1'
	
config wifi-vlan
	option name 'guest'
	option network 'guest'
	option vid '20'	

config wifi-station
	option key 'iamalanuser'
	option vid '1'

config wifi-station
	option key 'iamaguestuser'
	option vid '20'
1 Like