Any free TCP socket monitoring application?

13,182

Solution 1

For Windows,
TCPView from SysinternalsSuite will give you currently open and listening sockets.
It will also allow taking snapshots to text files for further analysis.

In general,
The netstat command will also help (from cmd.exe on windows, shell on unixes)

netstat -an

Solution 2

try wireshark. It is actually a network protocol analyzer. It can monitor and report tcp traffic.

Solution 3

aports, tcpview, netstat

Share:
13,182

Related videos on Youtube

Hemant
Author by

Hemant

My Profile I am programmer based in Udaipur, India. My work involves .NET (C#), Delphi, Oracle, Postgresql, OS X and iOS programming. My Works Sublines - Easy subtitles on Mac Base32 Encoding - An encoding library for .NET Machine Explorer - WMI access using Delphi

Updated on September 17, 2022

Comments

  • Hemant
    Hemant almost 2 years

    Please can you suggest any free application by which I can monitor the opening/open/closing TCP/IP sockets? Something that can tell me:

    1. Total number of sockets currently (different count for different socket states)
    2. Max till launch
    3. Any graph of socket usage (such as network or CPU graph shown in Windows Task Manager utility)

    Can you think of any such application?

    EDIT: Sorry about not giving enough details. Any application that can work on Windows OS would be welcomed.

    • Admin
      Admin almost 15 years
      I suggest you edit the question and add some more details: mainly which OS you'd like the utility to run on. As the question stands, it's very difficult to answer.
    • Admin
      Admin almost 15 years
      What kind of graph? Number of open (active) connections, average octets sent per connection? Or one of many other possibilities...