how to get the number of connections per client username in a vpn
i have a vpn which has a lot connections, i want to see which usernames are creating the most number of connections. how can i do that
Answers
-
If you're using cli:
show client-username *
If you're using SEMPv1 (or legacy SEMP):
(here as curl sample):
curl -u admin:admin -X post -d '<rpc><show><client-username><name>*</name></client-username></show></rpc>' https://your-broker:943/SEMP
("admin" is a admin user (or a user for login into broker WebUI), "943" is your SEMP port… maybe you have configured another one).
If you want to lean more about legacy SEMP:
https://docs.solace.com/Admin/SEMP/Using-Legacy-SEMP.htmif you're using Solace Cloud brokers, you can get the SEMP URL and the username/password from the manage-tab in the Cloud console.
Uli
0