Interestingly, in the Active tab there is a “comment” column, but I don’t know where this comment is coming from or how to set it. The comment from the user account does not show up here…
You could run a script like this in the terminal. It loops through the Active users, searches the Users for the same MAC in the name field, and returns the MAC + comment. It could also be scripted to output the other details that show up in the Active tab. If the MAC does not have a match, or there are multiple matches, it outputs this as well.
/ip hotspot active
:foreach i in=[find] do={
:local mac [get $i user]
:if ([:len [/ip hotspot user find name=$mac]] = 1) do={
:local comment [/ip hotspot user get [/ip hotspot user find name=$mac] comment]
:put "$mac $comment"
} else={
:put "$mac has zero or more than one match in Users"
}
}
I have the same problem
I would like to find a real solution
The developer must add this solution to next version of mikrotik
many thanks to developer team