How to see registered users on kamailio server?

I have a lot of new things for the Kamailio server. I found out that the user add command is "./kamctl add". But how can we find out the number of registered users or how to find out the number of authenticated users?

+8
sip kamailio
source share
1 answer

If you are looking for active users (i.e. those who are registered in the SIP phone at this moment):

kamctl ul show 

The above command will print a list of entries in the user's location table from Kamailio's memory.

If you are looking for wealthy users (i.e. users with a subscriber profile):

 kamctl db show subscriber 

The above command will print the contents of the subscriber to the database table where user profiles are stored.

+17
source share

All Articles