How To Check Number of SSH and Telnet session

Tags: ,
advertisement

How to check number of Telnet/SSH session:

Telnet
netstat | grep telnet -c
netstat -n | grep :23 -c

SSH
netstat |grep ssh -c
netstat -n | grep :22 -c


Simple right? Hope this will be helpful to everyone.

Possibly Related Posts:


Leave a Reply