WiFi clients listed by security protocl/AP/DHCP/etc?

Is there a way to see what security protocol is being used by clients?

/interface/wifi/registration-table/print detail does not show if clients are using WPA2 or WPA3 or something else.

Additionally, is there a way to easily display what AP users are connected to (CAPsMAN managed WiFi), as well as IPs/DHCP leases associated with those clients? I’m not seeing anything obvious, though I suspect it might be possible using scripting. These seem like basic pieces of functionality so before I went down that route, I figured I’d ask, as I may be missing something obvious.

Thanks!

Additionally, is there a way to easily display what AP users are connected to (CAPsMAN managed WiFi), as well as IPs/DHCP leases associated with those clients?

I do use DUDE for that overview. (even added RADIUS user in the User Manager comment attribute.)

Just an exemple of DUDE …
Klembord-2.jpg
just one more (70 AP’s, 200 client devices, no CAPsMAN)
Klembord-3.jpg

DUDE isn’t an option (no Windows), but appreciate the tip!

DUDE via browser … no problem …
Klembord-3.jpg
It is easier with the DUDE client to add devices .. but can be done
Klembord-4.jpg
(some do run DUDE client on latest MacOS. ) (“Crossover” sofware, they told me)

I’m using 7.x and the registration list is what I referenced in the first post as not containing the information I was asking about. Again, thank you for the suggestions.

Wifi clients and matching DHCP-lease:

:foreach client in=[/interface/wifi/registration-table/find] do={
	:local "client-mac" [/interface/wifi/registration-table/get $client value-name=mac-address];
	/interface/wifi/registration-table/print stats where mac-address=$"client-mac";
	/ip/dhcp-server/lease/print terse proplist=address,server,host-name where mac-address=$"client-mac";
	}

Ugly output, but it contains the IP and hostname information. I don’t see where you could get security protocols.