Does anyone know a good method of tracking concurrent telnet sessions in Windows Server 2003? I know you can type netstat -an | find ":23" to find all connections to ports beginning with 23 but this is an issue for other services listening on ports like 2301 or 2381 for example.
We are trying to track concurrent telnet sessions for licensing purposes.
Thanks for the assistance.
Software/Hardware used:
Windows, Windows Server 2003, telnet
ASKED:
September 25, 2009 5:56 PM
UPDATED:
February 6, 2011 7:43 PM
True – good catch so now just need a quick way to count the number of lines returned at the command prompt.
btw – thanks MShen.
You can use a powershell command to count the lines.
@(netstat -an | select-string “:23 “).count
HI,
By the bultin network monitor graphical tool in windows 2003 can do an dyou can filter based on port /application to view the output.
Thanks.
can we trace or know about client after disconnect ?