Link to home
Start Free TrialLog in
Avatar of mattlast
mattlastFlag for United States of America

asked on

how to monitor telnet sessions with snmp or netflow

my company has a modified version of nagios that we use to monitor our servers and network equipment.
Avatar of Rick Hobbs
Rick Hobbs
Flag of United States of America image

You could run netstat -an | find “:23 “ at a command prompt, or use a >> filename to save them into a file.  If you just want the number of connections, use @(netstat -an | select-string “:23 “).count in Powershell.  Of course, you can set any of these up in a cmd file and use scheduler to run it.
ASKER CERTIFIED SOLUTION
Avatar of Rick Hobbs
Rick Hobbs
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mattlast

ASKER

thanks