Forum Discussion

ertorres_290842's avatar
ertorres_290842
Icon for Nimbostratus rankNimbostratus
Sep 19, 2016

How many concurrent users?

Hi All,

 

Is there any way I can monitor how many real time users are passing thru my F5? For example, IPs 10.10.10.1, 10.10.10.2, and 10.10.10.3 passes thru my F5, where can I see that "3" users actually pass thru my F5?

 

Thanks!

 

2 Replies

  • Hi,

    an IP is not a user, you can have multiple users behind the same IP address.

    you can list all connection with command :

    tmsh show sys connections
    

    with this command, and sub commands (to filter client IP, server IP, protocol, ...) you can use linux commands:

     tmsh show sys connection | awk -F "[ :]" '{print $1}' | sort -u | wc -l